2014-09-27 04:44:47 +04:00
|
|
|
#
|
2014-11-22 03:42:44 +03:00
|
|
|
# "$Id$"
|
2014-09-27 04:44:47 +04:00
|
|
|
#
|
|
|
|
# macros.cmake defines macros used by the build system
|
|
|
|
# Written by Michael Surette
|
|
|
|
#
|
2014-10-09 20:11:36 +04:00
|
|
|
# Copyright 1998-2014 by Bill Spitzak and others.
|
2014-09-27 04:44:47 +04: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:
|
|
|
|
#
|
|
|
|
# http://www.fltk.org/COPYING.php
|
|
|
|
#
|
|
|
|
# Please report all bugs and problems on the following page:
|
|
|
|
#
|
|
|
|
# http://www.fltk.org/str.php
|
|
|
|
#
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# macros used by the build system
|
|
|
|
#######################################################################
|
|
|
|
macro(FL_ADD_LIBRARY LIBNAME LIBTYPE LIBFILES)
|
|
|
|
|
|
|
|
if(${LIBTYPE} STREQUAL "SHARED")
|
|
|
|
set(LIBRARY_NAME ${LIBNAME}_SHARED)
|
|
|
|
else()
|
|
|
|
set(LIBRARY_NAME ${LIBNAME})
|
|
|
|
endif(${LIBTYPE} STREQUAL "SHARED")
|
|
|
|
|
|
|
|
add_library(${LIBRARY_NAME} ${LIBTYPE} ${LIBFILES})
|
|
|
|
|
|
|
|
set_target_properties(${LIBRARY_NAME}
|
|
|
|
PROPERTIES
|
|
|
|
OUTPUT_NAME ${LIBNAME}
|
|
|
|
DEBUG_OUTPUT_NAME "${LIBNAME}d"
|
|
|
|
CLEAN_DIRECT_OUTPUT TRUE
|
|
|
|
COMPILE_DEFINITIONS "FL_LIBRARY"
|
|
|
|
)
|
|
|
|
|
|
|
|
if(${LIBTYPE} STREQUAL "SHARED")
|
|
|
|
set_target_properties(${LIBRARY_NAME}
|
|
|
|
PROPERTIES
|
|
|
|
VERSION ${FLTK_VERSION_FULL}
|
|
|
|
SOVERSION ${FLTK_VERSION_MAJOR}.${FLTK_VERSION_MINOR}
|
|
|
|
PREFIX "lib" # for MSVC static/shared coexistence
|
|
|
|
)
|
|
|
|
endif(${LIBTYPE} STREQUAL "SHARED")
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
if(OPTION_LARGE_FILE)
|
|
|
|
set_target_properties(${LIBNAME}
|
|
|
|
PROPERTIES
|
|
|
|
LINK_FLAGS /LARGEADDRESSAWARE
|
|
|
|
)
|
|
|
|
endif(OPTION_LARGE_FILE)
|
|
|
|
|
|
|
|
if(${LIBTYPE} STREQUAL "SHARED")
|
|
|
|
set_target_properties(${LIBRARY_NAME}
|
|
|
|
PROPERTIES
|
|
|
|
COMPILE_DEFINITIONS "FL_DLL"
|
|
|
|
)
|
|
|
|
endif(${LIBTYPE} STREQUAL "SHARED")
|
|
|
|
endif(MSVC)
|
|
|
|
|
|
|
|
install(TARGETS ${LIBRARY_NAME}
|
|
|
|
EXPORT FLTK-Targets
|
|
|
|
RUNTIME DESTINATION bin
|
|
|
|
LIBRARY DESTINATION lib
|
|
|
|
ARCHIVE DESTINATION lib
|
|
|
|
)
|
|
|
|
|
|
|
|
list(APPEND FLTK_LIBRARIES "${LIBRARY_NAME}")
|
|
|
|
set(FLTK_LIBRARIES ${FLTK_LIBRARIES} PARENT_SCOPE)
|
|
|
|
|
|
|
|
endmacro(FL_ADD_LIBRARY LIBNAME LIBTYPE LIBFILES)
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
macro(CREATE_EXAMPLE NAME SOURCES LIBRARIES)
|
|
|
|
|
2014-10-09 20:11:36 +04:00
|
|
|
set(srcs) # source files
|
|
|
|
set(flsrcs) # fluid source files
|
|
|
|
|
|
|
|
set(tname ${NAME}) # target name
|
|
|
|
set(oname ${NAME}) # output (executable) name
|
|
|
|
|
|
|
|
# rename reserved target name "help" (CMake 2.8.12 and later)
|
|
|
|
if(${tname} MATCHES "^help$")
|
|
|
|
set(tname "test_help")
|
|
|
|
endif(${tname} MATCHES "^help$")
|
|
|
|
|
2014-09-27 04:44:47 +04:00
|
|
|
foreach(src ${SOURCES})
|
2014-10-12 05:24:04 +04:00
|
|
|
if("${src}" MATCHES "\\.fl$")
|
2014-09-27 04:44:47 +04:00
|
|
|
list(APPEND flsrcs ${src})
|
|
|
|
else()
|
|
|
|
list(APPEND srcs ${src})
|
2014-10-12 05:24:04 +04:00
|
|
|
endif("${src}" MATCHES "\\.fl$")
|
2014-09-27 04:44:47 +04:00
|
|
|
endforeach(src)
|
|
|
|
|
|
|
|
if(flsrcs)
|
|
|
|
set(FLTK_WRAP_UI TRUE)
|
2014-10-09 20:11:36 +04:00
|
|
|
fltk_wrap_ui(${tname} ${flsrcs})
|
2014-09-27 04:44:47 +04:00
|
|
|
endif(flsrcs)
|
|
|
|
|
2014-10-09 20:11:36 +04:00
|
|
|
add_executable(${tname} WIN32 ${srcs} ${${tname}_FLTK_UI_SRCS})
|
|
|
|
set_target_properties(${tname}
|
|
|
|
PROPERTIES OUTPUT_NAME ${oname}
|
|
|
|
)
|
2014-09-27 04:44:47 +04:00
|
|
|
|
2014-10-09 20:11:36 +04:00
|
|
|
target_link_libraries(${tname} ${LIBRARIES})
|
2014-09-27 04:44:47 +04:00
|
|
|
|
|
|
|
# link in optional libraries
|
|
|
|
if(USE_XFT)
|
2014-10-09 20:11:36 +04:00
|
|
|
target_link_libraries(${tname} ${X11_Xft_LIB})
|
2014-09-27 04:44:47 +04:00
|
|
|
endif(USE_XFT)
|
|
|
|
|
|
|
|
if(HAVE_XINERAMA)
|
2014-10-09 20:11:36 +04:00
|
|
|
target_link_libraries(${tname} ${X11_Xinerama_LIB})
|
2014-09-27 04:44:47 +04:00
|
|
|
endif(HAVE_XINERAMA)
|
|
|
|
|
|
|
|
# install the example
|
2014-10-09 20:11:36 +04:00
|
|
|
install(TARGETS ${tname}
|
2014-09-27 04:44:47 +04:00
|
|
|
DESTINATION ${FLTK_EXAMPLES_PATH}
|
|
|
|
)
|
|
|
|
|
|
|
|
endmacro(CREATE_EXAMPLE NAME SOURCES LIBRARIES)
|
|
|
|
|
|
|
|
#######################################################################
|