2015-02-16 14:30:27 +00:00
|
|
|
#
|
|
|
|
|
# "$Id$"
|
|
|
|
|
#
|
|
|
|
|
# CMakeLists.txt to build fluid for the FLTK project using CMake (www.cmake.org)
|
|
|
|
|
#
|
|
|
|
|
# Copyright 1998-2015 by Bill Spitzak and others.
|
|
|
|
|
#
|
|
|
|
|
# This library is free software. Distribution and use rights are outlined in
|
|
|
|
|
# the file "COPYING" which should have been included with this file. If this
|
|
|
|
|
# file is missing or damaged, see the license at:
|
|
|
|
|
#
|
|
|
|
|
# http://www.fltk.org/COPYING.php
|
|
|
|
|
#
|
|
|
|
|
# Please report all bugs and problems on the following page:
|
|
|
|
|
#
|
|
|
|
|
# http://www.fltk.org/str.php
|
|
|
|
|
#
|
2010-04-05 22:33:58 +00:00
|
|
|
|
|
|
|
|
set(CPPFILES
|
2014-09-27 00:41:06 +00:00
|
|
|
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
|
2004-10-18 20:29:58 +00:00
|
|
|
)
|
|
|
|
|
|
2016-03-02 00:54:37 +00:00
|
|
|
if(APPLE AND (NOT OPTION_APPLE_X11) AND (NOT OPTION_APPLE_SDL))
|
2015-04-07 16:08:54 +00:00
|
|
|
set( ICON_NAME fluid.icns )
|
|
|
|
|
set( ICON_PATH "${PROJECT_SOURCE_DIR}/fluid/Fluid.app/Contents/Resources/${ICON_NAME}" )
|
|
|
|
|
add_executable(fluid MACOSX_BUNDLE ${CPPFILES} ${ICON_PATH})
|
|
|
|
|
else()
|
|
|
|
|
add_executable(fluid ${CPPFILES})
|
2016-03-02 00:54:37 +00:00
|
|
|
endif(APPLE AND (NOT OPTION_APPLE_X11) AND (NOT OPTION_APPLE_SDL))
|
2015-04-07 16:08:54 +00:00
|
|
|
|
2010-04-05 22:33:58 +00:00
|
|
|
target_link_libraries(fluid fltk fltk_images fltk_forms)
|
|
|
|
|
|
|
|
|
|
# link in optional libraries
|
|
|
|
|
if(USE_XFT)
|
|
|
|
|
target_link_libraries(fluid ${X11_Xft_LIB})
|
|
|
|
|
endif(USE_XFT)
|
2005-02-06 00:17:50 +00:00
|
|
|
|
2010-04-05 22:33:58 +00:00
|
|
|
if(HAVE_XINERAMA)
|
|
|
|
|
target_link_libraries(fluid ${X11_Xinerama_LIB})
|
|
|
|
|
endif(HAVE_XINERAMA)
|
|
|
|
|
|
2015-12-30 14:37:35 +00:00
|
|
|
if(HAVE_XRENDER)
|
|
|
|
|
target_link_libraries(fluid ${X11_Xrender_LIB})
|
|
|
|
|
endif(HAVE_XRENDER)
|
|
|
|
|
|
2016-03-02 00:54:37 +00:00
|
|
|
if(APPLE AND (NOT OPTION_APPLE_X11) AND (NOT OPTION_APPLE_SDL))
|
2015-04-07 16:08:54 +00:00
|
|
|
set_target_properties(fluid PROPERTIES MACOSX_BUNDLE_ICON_FILE ${ICON_NAME})
|
|
|
|
|
set_target_properties(fluid PROPERTIES RESOURCE ${ICON_PATH})
|
|
|
|
|
install(TARGETS fluid DESTINATION ${FLTK_BINDIR})
|
|
|
|
|
else()
|
|
|
|
|
install(TARGETS fluid
|
2014-09-27 00:41:06 +00:00
|
|
|
EXPORT FLTK-Targets
|
2015-02-16 14:30:27 +00:00
|
|
|
RUNTIME DESTINATION ${FLTK_BINDIR}
|
|
|
|
|
LIBRARY DESTINATION ${FLTK_LIBDIR}
|
|
|
|
|
ARCHIVE DESTINATION ${FLTK_LIBDIR}
|
2014-09-27 00:41:06 +00:00
|
|
|
)
|
2016-03-02 00:54:37 +00:00
|
|
|
endif(APPLE AND (NOT OPTION_APPLE_X11) AND (NOT OPTION_APPLE_SDL))
|
2015-02-16 14:30:27 +00:00
|
|
|
|
|
|
|
|
if(UNIX)
|
|
|
|
|
install(FILES fluid.desktop
|
|
|
|
|
DESTINATION ${FLTK_DATADIR}/applications
|
|
|
|
|
)
|
|
|
|
|
# Install mime-type file. x-fluid.desktop method is deprecated.
|
|
|
|
|
install(FILES fluid.xml
|
|
|
|
|
DESTINATION ${FLTK_DATADIR}/mime/packages
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# Install desktop icons.
|
|
|
|
|
foreach(icon 32 48 64 128)
|
|
|
|
|
install(FILES icons/fluid-${icon}.png
|
|
|
|
|
DESTINATION ${FLTK_DATADIR}/icons/hicolor/${icon}x${icon}/apps
|
|
|
|
|
RENAME fluid.png
|
|
|
|
|
)
|
|
|
|
|
endforeach()
|
|
|
|
|
endif(UNIX)
|