]> Creatis software - crea.git/blobdiff - appli/creaDevManager/CMakeLists.txt
Feature #1711
[crea.git] / appli / creaDevManager / CMakeLists.txt
diff --git a/appli/creaDevManager/CMakeLists.txt b/appli/creaDevManager/CMakeLists.txt
new file mode 100644 (file)
index 0000000..13ff79f
--- /dev/null
@@ -0,0 +1,47 @@
+#============================================================================
+# Builds and install the executable creaDevManager
+
+#============================================================================
+# Appli name
+SET(EXE_NAME creaDevManager)
+
+#============================================================================
+# Sources
+SET(${EXE_NAME}_SOURCES creaDevManager.cpp)
+
+#============================================================================
+# Settings
+SET(${EXE_NAME}_HAS_GUI TRUE)
+SET(${EXE_NAME}_CONSOLE FALSE)
+
+#-Libraries------------------------------------------------------------------
+
+INCLUDE_DIRECTORIES (
+
+# USER! : Add here the directories holding th extra .h files you need
+# e.g.
+# ../../lib/<my_library_I_just_created>
+../../lib/creaDevManagerLib
+)
+
+#-Dependencies---------------------------------------------------------------
+
+# DEPENDENCIES (LIBRARIES TO LINK WITH)
+SET ( ${EXE_NAME}_LINK_LIBRARIES
+    ${crea_LIBRARIES}
+    ${WXWIDGETS_LIBRARIES}
+  #    ${KWWidgets_LIBRARIES}
+  #    ${VTK_LIBRARIES}
+  #    ${ITK_LIBRARIES}
+  #    ${GDCM_LIBRARIES}
+  #    ${BOOST_LIBRARIES}
+  
+  # USER! : Add here those agmonst the various (?) PROJECT LIBRARIES
+  # you need for the current executable
+  # (If you created only one Library, don't forget it !...) 
+  creaDevManagerLib
+)
+
+#-Creates and installs the exe-----------------------------------------------
+CREA_ADD_EXECUTABLE( ${EXE_NAME} )
+#============================================================================