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.
|
-
- set(CPPFILES
- CodeEditor.cxx
- Fl_Function_Type.cxx
- Fl_Group_Type.cxx
- Fl_Menu_Type.cxx
- Fl_Type.cxx
- Fl_Widget_Type.cxx
- Fl_Window_Type.cxx
- Fluid_Image.cxx
- about_panel.cxx
- align_widget.cxx
- alignment_panel.cxx
- code.cxx
- factory.cxx
- file.cxx
- fluid.cxx
- function_panel.cxx
- template_panel.cxx
- undo.cxx
- widget_panel.cxx
- )
-
- add_executable(ntk-fluid ${CPPFILES})
- target_link_libraries(ntk-fluid fltk fltk_images fltk_forms)
-
- # link in optional libraries
-
- if(FLTK_USE_GL)
- target_link_libraries(ntk-fluid fltk_gl)
- target_link_libraries(ntk-fluid ${OPENGL_LIBRARIES})
- endif(FLTK_USE_GL)
-
- if(USE_XFT)
- target_link_libraries(ntk-fluid ${X11_Xft_LIB})
- endif(USE_XFT)
-
- if(HAVE_XINERAMA)
- target_link_libraries(ntk-fluid ${X11_Xinerama_LIB})
- endif(HAVE_XINERAMA)
-
- install(TARGETS ntk-fluid
- EXPORT fltk-install
- DESTINATION ${PREFIX_BIN}
- )
|