]> Creatis software - creaContours.git/blob - appli/wxContourGUIExample/CMakeLists.txt
Parser Osirix
[creaContours.git] / appli / wxContourGUIExample / CMakeLists.txt
1
2 IF(WIN32)
3   #MESSAGE("WIN32")
4   ADD_EXECUTABLE(wxContourGUIExample WIN32 wxContourGUIExample.cxx)  
5   SET_TARGET_PROPERTIES(wxContourGUIExample PROPERTIES LINK_FLAGS /subsystem:console )
6 ELSE(WIN32)
7   ADD_EXECUTABLE(wxContourGUIExample MACOSX_BUNDLE wxContourGUIExample)
8 ENDIF(WIN32)
9
10 INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIRS})
11 INCLUDE_DIRECTORIES(${creaImageIO2_INCLUDE_DIRS})
12
13 TARGET_LINK_LIBRARIES( wxContourGUIExample
14 #                      ${WXWIDGETS_LIBRARIES}
15                        ${VTK_LIBRARIES}
16                        ${ITK_LIBRARIES}
17                        ${creaEnvironment_LIBRARIES}
18                        ${creaMaracasVisu_LIBRARIES}
19                        ${creaImageIO2_LIBRARIES}
20                        Interface_Icons_NDimensions_lib
21                        Interface_ManagerContour_NDimensions_lib
22                        kernel_ManagerContour_NDimensions_lib                   
23
24                      )
25
26 INSTALL_TARGETS(/bin/ wxContourGUIExample )