summaryrefslogtreecommitdiffstats
path: root/Source/FLTKDialog
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-06-19 19:49:40 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-06-19 19:49:40 (GMT)
commit7a3af0474d97e1e3443eaa0576b0cf0766d1ec1b (patch)
tree223e391d965882c1e7e5ba7bcbc1374397f58366 /Source/FLTKDialog
parentd454811a63636b835483b6ddad7a36d16f9b75db (diff)
downloadCMake-7a3af0474d97e1e3443eaa0576b0cf0766d1ec1b.zip
CMake-7a3af0474d97e1e3443eaa0576b0cf0766d1ec1b.tar.gz
CMake-7a3af0474d97e1e3443eaa0576b0cf0766d1ec1b.tar.bz2
ENH: add bootstrap support for building fltk
Diffstat (limited to 'Source/FLTKDialog')
-rw-r--r--Source/FLTKDialog/CMakeLists.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/Source/FLTKDialog/CMakeLists.txt b/Source/FLTKDialog/CMakeLists.txt
new file mode 100644
index 0000000..761a896
--- /dev/null
+++ b/Source/FLTKDialog/CMakeLists.txt
@@ -0,0 +1,20 @@
+SOURCE_FILES(SRCS
+CMakeSetupGUI
+CMakeSetupGUIImplementation
+FLTKDialog
+FLTKPropertyItemRow
+FLTKPropertyList
+FLTKPropertyNameButtonWithHelp
+)
+
+LINK_LIBRARIES(${FLTK_LIBRARY})
+IF(WIN32)
+ IF(NOT UNIX)
+ LINK_LIBRARIES(wsock32)
+ ENDIF(NOT UNIX)
+ENDIF(WIN32)
+
+INCLUDE_DIRECTORIES(${FLTK_INCLUDE_PATH})
+
+ADD_EXECUTABLE(CMakeSetupDialog SRCS)
+