Committing in .
Modified Files: wxWindows/descrip.mms wxWindows/samples/caret/descrip.mms Compile support for caret sample on wxGTK/VMS ---------------------------------------------------------------------- git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8150 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -32,7 +32,9 @@ gtk : setup.h
|
|||||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||||
set default [--.demos.bombs]
|
set default [--.demos.bombs]
|
||||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||||
set default [--.samples.minimal]
|
set default [--.samples.caret]
|
||||||
|
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||||
|
set default [-.minimal]
|
||||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||||
|
|
||||||
motif : setup.h
|
motif : setup.h
|
||||||
|
@@ -11,8 +11,13 @@
|
|||||||
.ifdef __WXMOTIF__
|
.ifdef __WXMOTIF__
|
||||||
CXX_DEFINE = /define=(__WXMOTIF__=1)
|
CXX_DEFINE = /define=(__WXMOTIF__=1)
|
||||||
.else
|
.else
|
||||||
|
.ifdef __WXGTK__
|
||||||
|
CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||||
|
/assume=(nostdnew,noglobal_array_new)
|
||||||
|
.else
|
||||||
CXX_DEFINE =
|
CXX_DEFINE =
|
||||||
.endif
|
.endif
|
||||||
|
.endif
|
||||||
|
|
||||||
.suffixes : .cpp
|
.suffixes : .cpp
|
||||||
|
|
||||||
@@ -20,11 +25,22 @@ CXX_DEFINE =
|
|||||||
cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
|
cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
|
||||||
|
|
||||||
all :
|
all :
|
||||||
$(MMS)$(MMSQUALIFIERS) caret.exe
|
|
||||||
|
|
||||||
caret.exe : caret.obj
|
|
||||||
.ifdef __WXMOTIF__
|
.ifdef __WXMOTIF__
|
||||||
|
$(MMS)$(MMSQUALIFIERS) caret.exe
|
||||||
|
.else
|
||||||
|
.ifdef __WXGTK__
|
||||||
|
$(MMS)$(MMSQUALIFIERS) caret_gtk.exe
|
||||||
|
.endif
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.ifdef __WXMOTIF__
|
||||||
|
caret.exe : caret.obj
|
||||||
cxxlink caret,[--.lib]vms/opt
|
cxxlink caret,[--.lib]vms/opt
|
||||||
|
.else
|
||||||
|
.ifdef __WXGTK__
|
||||||
|
caret_gtk.exe : caret.obj
|
||||||
|
cxxlink/exec=caret_gtk.exe caret,[--.lib]vms_gtk/opt
|
||||||
|
.endif
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
caret.obj : caret.cpp
|
caret.obj : caret.cpp
|
||||||
|
Reference in New Issue
Block a user