2004-10-19 00:29:58 +04:00
|
|
|
SET(CPPFILES
|
2005-05-13 07:05:08 +04:00
|
|
|
CodeEditor.cxx
|
2004-10-19 00:29:58 +04:00
|
|
|
Fl_Function_Type.cxx
|
|
|
|
Fl_Group_Type.cxx
|
2005-05-13 07:05:08 +04:00
|
|
|
Fl_Menu_Type.cxx
|
2004-10-19 00:29:58 +04:00
|
|
|
Fl_Type.cxx
|
2005-05-13 07:05:08 +04:00
|
|
|
Fl_Widget_Type.cxx
|
2004-10-19 00:29:58 +04:00
|
|
|
Fl_Window_Type.cxx
|
|
|
|
Fluid_Image.cxx
|
2005-05-13 07:05:08 +04:00
|
|
|
about_panel.cxx
|
|
|
|
align_widget.cxx
|
|
|
|
alignment_panel.cxx
|
2004-10-19 00:29:58 +04:00
|
|
|
code.cxx
|
|
|
|
factory.cxx
|
|
|
|
file.cxx
|
2005-05-13 07:05:08 +04:00
|
|
|
fluid.cxx
|
2004-10-19 00:29:58 +04:00
|
|
|
function_panel.cxx
|
2005-05-13 07:05:08 +04:00
|
|
|
template_panel.cxx
|
|
|
|
undo.cxx
|
|
|
|
widget_panel.cxx
|
2004-10-19 00:29:58 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
ADD_EXECUTABLE(fluid ${CPPFILES})
|
2005-08-06 09:02:56 +04:00
|
|
|
INSTALL_TARGETS(/bin fluid)
|
2004-10-19 00:29:58 +04:00
|
|
|
TARGET_LINK_LIBRARIES(fluid fltk fltk_images fltk_forms ${FLTK_PLATFORM_DEPENDENT_LIBS})
|
|
|
|
IF(OPENGL_FOUND)
|
|
|
|
TARGET_LINK_LIBRARIES(fluid fltk_gl)
|
|
|
|
ENDIF(OPENGL_FOUND)
|
2005-02-06 03:17:50 +03:00
|
|
|
|