You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
414 B
21 lines
414 B
16 years ago
|
FIND_PACKAGE(FLTK REQUIRED)
|
||
|
|
||
|
SET(SRCS
|
||
|
CMakeSetupGUIImplementation.cxx
|
||
|
FLTKDialog.cxx
|
||
|
FLTKPropertyItemRow.cxx
|
||
|
FLTKPropertyList.cxx
|
||
|
)
|
||
|
|
||
|
SET(FLTK_GUI_Files_SRCS
|
||
|
CMakeSetupGUI.fl
|
||
|
)
|
||
|
|
||
|
INCLUDE_DIRECTORIES(${FLTK_INCLUDE_PATH})
|
||
|
|
||
|
FLTK_WRAP_UI(FLCMakeSetup ${FLTK_GUI_Files_SRCS})
|
||
|
|
||
|
ADD_EXECUTABLE(FLCMakeSetup ${SRCS} ${FLCMakeSetup_FLTK_UI_SRCS} )
|
||
|
TARGET_LINK_LIBRARIES(FLCMakeSetup ${FLTK_LIBRARY} CMakeLib)
|
||
|
|