2015-02-16 17:30:27 +03:00
|
|
|
#
|
|
|
|
# CMakeLists.txt to build fluid for the FLTK project using CMake (www.cmake.org)
|
|
|
|
#
|
2020-06-13 16:19:27 +03:00
|
|
|
# Copyright 1998-2020 by Bill Spitzak and others.
|
2015-02-16 17:30:27 +03:00
|
|
|
#
|
|
|
|
# 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:
|
|
|
|
#
|
2018-12-04 16:16:55 +03:00
|
|
|
# https://www.fltk.org/COPYING.php
|
2015-02-16 17:30:27 +03:00
|
|
|
#
|
2020-07-01 19:03:10 +03:00
|
|
|
# Please see the following page on how to report bugs and issues:
|
2015-02-16 17:30:27 +03:00
|
|
|
#
|
2020-07-01 19:03:10 +03:00
|
|
|
# https://www.fltk.org/bugs.php
|
2015-02-16 17:30:27 +03:00
|
|
|
#
|
2010-04-06 02:33:58 +04:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
if (NOT ANDROID)
|
2018-03-02 23:12:55 +03:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
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
|
2004-10-19 00:29:58 +04:00
|
|
|
)
|
|
|
|
|
2017-02-15 23:28:13 +03:00
|
|
|
# ExternalCodeEditor: platform specific files
|
|
|
|
|
|
|
|
if (WIN32)
|
2020-06-13 16:19:27 +03:00
|
|
|
list (APPEND CPPFILES ExternalCodeEditor_WIN32.cxx)
|
2017-02-15 23:28:13 +03:00
|
|
|
else ()
|
2020-06-13 16:19:27 +03:00
|
|
|
list (APPEND CPPFILES ExternalCodeEditor_UNIX.cxx)
|
2017-02-15 23:28:13 +03:00
|
|
|
endif (WIN32)
|
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
if (APPLE AND (NOT OPTION_APPLE_X11) AND (NOT OPTION_APPLE_SDL))
|
|
|
|
set (ICON_NAME fluid.icns)
|
|
|
|
set (ICON_PATH "${PROJECT_SOURCE_DIR}/fluid/fluid.app/Contents/Resources/${ICON_NAME}")
|
2015-04-07 19:08:54 +03:00
|
|
|
add_executable(fluid MACOSX_BUNDLE ${CPPFILES} ${ICON_PATH})
|
2020-06-13 16:19:27 +03:00
|
|
|
else ()
|
2016-09-20 16:31:38 +03:00
|
|
|
add_executable(fluid WIN32 ${CPPFILES})
|
2020-06-13 16:19:27 +03:00
|
|
|
endif (APPLE AND (NOT OPTION_APPLE_X11) AND (NOT OPTION_APPLE_SDL))
|
2015-04-07 19:08:54 +03:00
|
|
|
|
2010-04-06 02:33:58 +04:00
|
|
|
target_link_libraries(fluid fltk fltk_images fltk_forms)
|
|
|
|
|
2016-03-27 23:59:39 +03:00
|
|
|
# install fluid
|
2015-12-30 17:37:35 +03:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
if (APPLE AND (NOT OPTION_APPLE_X11) AND (NOT OPTION_APPLE_SDL))
|
2016-03-27 23:59:39 +03:00
|
|
|
# create bundle
|
2020-06-13 16:19:27 +03:00
|
|
|
set_target_properties (fluid PROPERTIES MACOSX_BUNDLE_INFO_PLIST "${PROJECT_SOURCE_DIR}/fluid/fluid.app/Contents/Info.plist")
|
|
|
|
set_target_properties (fluid PROPERTIES MACOSX_BUNDLE_ICON_FILE ${ICON_NAME})
|
|
|
|
set_target_properties (fluid PROPERTIES RESOURCE ${ICON_PATH})
|
2016-03-27 23:59:39 +03:00
|
|
|
# install
|
2020-06-13 16:19:27 +03:00
|
|
|
install (TARGETS fluid DESTINATION ${FLTK_BINDIR})
|
2015-04-07 19:08:54 +03:00
|
|
|
else()
|
2020-06-13 16:19:27 +03:00
|
|
|
install (TARGETS fluid
|
2014-09-27 04:41:06 +04:00
|
|
|
EXPORT FLTK-Targets
|
2015-02-16 17:30:27 +03:00
|
|
|
RUNTIME DESTINATION ${FLTK_BINDIR}
|
|
|
|
LIBRARY DESTINATION ${FLTK_LIBDIR}
|
|
|
|
ARCHIVE DESTINATION ${FLTK_LIBDIR}
|
2020-06-13 16:19:27 +03:00
|
|
|
)
|
|
|
|
endif (APPLE AND (NOT OPTION_APPLE_X11) AND (NOT OPTION_APPLE_SDL))
|
2015-02-16 17:30:27 +03:00
|
|
|
|
2016-03-27 23:59:39 +03:00
|
|
|
# install desktop files
|
|
|
|
|
2020-06-13 16:19:27 +03: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
|
|
|
|
)
|
2015-02-16 17:30:27 +03:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
# 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)
|
2018-03-02 23:12:55 +03:00
|
|
|
|
2020-06-13 16:19:27 +03:00
|
|
|
endif (NOT ANDROID)
|