1 #----------------------------------------------------------------------------
2 # SET THE NAME OF YOUR EXECUTABLE
3 # Replace 'MyExe' by the name you want to give your executable.
4 # (a good policy is to give the executable the same name that the directory)
6 #########################
8 #########################
10 #----------------------------------------------------------------------------
12 #----------------------------------------------------------------------------
13 # EXECUTABLE SOURCES (TO BE COMPILED)
14 # EITHER LIST ALL .cxx, *.cpp, *.cc IN CURRENT DIR USING NEXT LINE:
16 FILE(GLOB ${EXE_NAME}_SOURCES *.cxx *.cpp *.cc)
18 # OR MANUALLY LIST YOUR FILES WITH NEXT COMMAND (WITHOUT EXTENSION)
19 # SET ( ${EXE_NAME}_SOURCES
22 #----------------------------------------------------------------------------
26 # Add here the directories holding th extra .h files you need
28 # ../../lib/<my_library_I_just_created>
32 #----------------------------------------------------------------------------
33 # DEPENDENCIES (LIBRARIES TO LINK WITH)
34 SET ( ${EXE_NAME}_LINK_LIBRARIES
36 # ${WXWIDGETS_LIBRARIES}
37 # ${KWWidgets_LIBRARIES}
43 # Add here those agmonst the various (?) PROJECT LIBRARIES
44 # you need for the current executable
45 # (If you created only one Library, don't forget it !...)
49 #----------------------------------------------------------------------------
51 #----------------------------------------------------------------------------
52 # CREATES AND INSTALLS THE EXE
53 # Set to ON if your appli has a GUI (to build as a Win32 app on windows)
54 SET(${EXE_NAME}_HAS_GUI OFF)
55 # Set to ON if your appli has a GUI but you also want a msdos console on windows
56 SET(${EXE_NAME}_CONSOLE OFF)
57 CREA_ADD_EXECUTABLE( ${EXE_NAME} )
58 #----------------------------------------------------------------------------