2013-08-08 01:57:59 +08:00
|
|
|
|
include(CMakeParseArguments)
|
2010-08-19 23:59:24 +08:00
|
|
|
|
|
|
|
|
|
# this macro adds external dependencies to a static target,
|
|
|
|
|
# compensating for the lack of a link step when building a static library.
|
|
|
|
|
# every compiler has its own way of doing it:
|
|
|
|
|
# - VC++ supports it directly through the static library flags
|
|
|
|
|
# - MinGW/gcc doesn't support it, but as a static library is nothing more than an archive,
|
|
|
|
|
# we can simply merge the external dependencies to our generated target as a post-build step
|
2012-02-16 05:41:42 +08:00
|
|
|
|
# - for other compilers and OSes, static build is not encouraged so we don't try to
|
|
|
|
|
# pre-link dependencies, we just "link" them so that the SFML samples can compile
|
|
|
|
|
# out-of-the-box (CMake forwards the dependencies automatically)
|
2010-08-19 23:59:24 +08:00
|
|
|
|
macro(sfml_static_add_libraries target)
|
|
|
|
|
if(WINDOWS AND COMPILER_GCC)
|
|
|
|
|
# Windows - gcc
|
|
|
|
|
foreach(lib ${ARGN})
|
|
|
|
|
if(NOT ${lib} MATCHES ".*/.*")
|
|
|
|
|
string(REGEX REPLACE "(.*)/bin/.*\\.exe" "\\1" STANDARD_LIBS_PATH "${CMAKE_CXX_COMPILER}")
|
2012-05-02 04:01:56 +08:00
|
|
|
|
if(COMPILER_GCC_W64)
|
|
|
|
|
set(lib "${STANDARD_LIBS_PATH}/${GCC_MACHINE}/lib/lib${lib}.a")
|
|
|
|
|
else()
|
|
|
|
|
set(lib "${STANDARD_LIBS_PATH}/lib/lib${lib}.a")
|
|
|
|
|
endif()
|
2010-08-19 23:59:24 +08:00
|
|
|
|
endif()
|
|
|
|
|
string(TOUPPER ${CMAKE_BUILD_TYPE} BUILD_TYPE)
|
|
|
|
|
get_target_property(TARGET_FILENAME ${target} ${BUILD_TYPE}_LOCATION)
|
|
|
|
|
add_custom_command(TARGET ${target}
|
|
|
|
|
POST_BUILD
|
|
|
|
|
COMMAND ${CMAKE_AR} x ${lib}
|
|
|
|
|
COMMAND ${CMAKE_AR} rcs ${TARGET_FILENAME} *.o
|
|
|
|
|
COMMAND del *.o /f /q
|
|
|
|
|
VERBATIM)
|
|
|
|
|
endforeach()
|
|
|
|
|
elseif(MSVC)
|
|
|
|
|
# Visual C++
|
|
|
|
|
set(LIBRARIES "")
|
|
|
|
|
foreach(lib ${ARGN})
|
|
|
|
|
if(NOT ${lib} MATCHES ".*\\.lib")
|
|
|
|
|
set(lib ${lib}.lib)
|
|
|
|
|
endif()
|
2011-12-29 04:39:23 +08:00
|
|
|
|
if(MSVC_IDE AND MSVC_VERSION LESS 2010)
|
2010-11-08 03:51:33 +08:00
|
|
|
|
# for Visual Studio projects < 2010, we must add double quotes
|
|
|
|
|
# around paths because they may contain spaces
|
2010-10-06 05:19:30 +08:00
|
|
|
|
set(LIBRARIES "${LIBRARIES} "\\;${lib}"\\;")
|
|
|
|
|
else()
|
2010-11-21 06:30:14 +08:00
|
|
|
|
set(LIBRARIES "${LIBRARIES} \"${lib}\"")
|
2010-10-06 05:19:30 +08:00
|
|
|
|
endif()
|
2010-08-19 23:59:24 +08:00
|
|
|
|
endforeach()
|
|
|
|
|
set_target_properties(${target} PROPERTIES STATIC_LIBRARY_FLAGS ${LIBRARIES})
|
2012-05-02 04:01:56 +08:00
|
|
|
|
else()
|
2012-02-16 05:41:42 +08:00
|
|
|
|
# All other platforms
|
|
|
|
|
target_link_libraries(${target} ${ARGN})
|
2010-08-19 23:59:24 +08:00
|
|
|
|
endif()
|
|
|
|
|
endmacro()
|
|
|
|
|
|
|
|
|
|
# add a new target which is a SFML library
|
|
|
|
|
# ex: sfml_add_library(sfml-graphics
|
|
|
|
|
# SOURCES sprite.cpp image.cpp ...
|
|
|
|
|
# DEPENDS sfml-window sfml-system
|
|
|
|
|
# EXTERNAL_LIBS opengl freetype ...)
|
|
|
|
|
macro(sfml_add_library target)
|
|
|
|
|
|
|
|
|
|
# parse the arguments
|
2013-08-08 01:57:59 +08:00
|
|
|
|
cmake_parse_arguments(THIS "" "" "SOURCES;DEPENDS;EXTERNAL_LIBS" ${ARGN})
|
2010-08-19 23:59:24 +08:00
|
|
|
|
|
|
|
|
|
# create the target
|
|
|
|
|
add_library(${target} ${THIS_SOURCES})
|
|
|
|
|
|
2012-01-21 17:34:17 +08:00
|
|
|
|
# define the export symbol of the module
|
|
|
|
|
string(REPLACE "-" "_" NAME_UPPER "${target}")
|
|
|
|
|
string(TOUPPER "${NAME_UPPER}" NAME_UPPER)
|
|
|
|
|
set_target_properties(${target} PROPERTIES DEFINE_SYMBOL ${NAME_UPPER}_EXPORTS)
|
|
|
|
|
|
2010-08-19 23:59:24 +08:00
|
|
|
|
# adjust the output file prefix/suffix to match our conventions
|
|
|
|
|
if(BUILD_SHARED_LIBS)
|
2010-11-05 05:21:32 +08:00
|
|
|
|
if(WINDOWS)
|
|
|
|
|
# include the major version number in Windows shared library names (but not import library names)
|
|
|
|
|
set_target_properties(${target} PROPERTIES DEBUG_POSTFIX -d)
|
|
|
|
|
set_target_properties(${target} PROPERTIES SUFFIX "-${VERSION_MAJOR}${CMAKE_SHARED_LIBRARY_SUFFIX}")
|
|
|
|
|
else()
|
|
|
|
|
set_target_properties(${target} PROPERTIES DEBUG_POSTFIX -d)
|
|
|
|
|
endif()
|
2010-08-19 23:59:24 +08:00
|
|
|
|
if (WINDOWS AND COMPILER_GCC)
|
2010-11-05 05:21:32 +08:00
|
|
|
|
# on Windows/gcc get rid of "lib" prefix for shared libraries,
|
|
|
|
|
# and transform the ".dll.a" suffix into ".a" for import libraries
|
2010-08-19 23:59:24 +08:00
|
|
|
|
set_target_properties(${target} PROPERTIES PREFIX "")
|
|
|
|
|
set_target_properties(${target} PROPERTIES IMPORT_SUFFIX ".a")
|
|
|
|
|
endif()
|
|
|
|
|
else()
|
|
|
|
|
set_target_properties(${target} PROPERTIES DEBUG_POSTFIX -s-d)
|
|
|
|
|
set_target_properties(${target} PROPERTIES RELEASE_POSTFIX -s)
|
2012-02-09 02:31:55 +08:00
|
|
|
|
set_target_properties(${target} PROPERTIES MINSIZEREL_POSTFIX -s)
|
2010-08-19 23:59:24 +08:00
|
|
|
|
endif()
|
|
|
|
|
|
2010-11-05 05:21:32 +08:00
|
|
|
|
# set the version and soversion of the target (for compatible systems -- mostly Linuxes)
|
2011-05-16 14:00:30 +08:00
|
|
|
|
set_target_properties(${target} PROPERTIES SOVERSION ${VERSION_MAJOR})
|
|
|
|
|
set_target_properties(${target} PROPERTIES VERSION ${VERSION_MAJOR}.${VERSION_MINOR})
|
2010-08-19 23:59:24 +08:00
|
|
|
|
|
2013-02-26 02:17:46 +08:00
|
|
|
|
# set the target's folder (for IDEs that support it, e.g. Visual Studio)
|
|
|
|
|
set_target_properties(${target} PROPERTIES FOLDER "SFML")
|
|
|
|
|
|
2012-04-19 01:07:47 +08:00
|
|
|
|
# for gcc >= 4.0 on Windows, apply the SFML_USE_STATIC_STD_LIBS option if it is enabled
|
|
|
|
|
if(WINDOWS AND COMPILER_GCC AND SFML_USE_STATIC_STD_LIBS)
|
2011-12-29 05:20:15 +08:00
|
|
|
|
if(NOT GCC_VERSION VERSION_LESS "4")
|
2011-05-16 05:53:36 +08:00
|
|
|
|
set_target_properties(${target} PROPERTIES LINK_FLAGS "-static-libgcc -static-libstdc++")
|
2010-08-19 23:59:24 +08:00
|
|
|
|
endif()
|
|
|
|
|
endif()
|
|
|
|
|
|
2013-02-26 02:17:46 +08:00
|
|
|
|
# if using gcc >= 4.0 or clang >= 3.0 on a non-Windows platform, we must hide public symbols by default
|
2011-10-17 01:30:37 +08:00
|
|
|
|
# (exported ones are explicitely marked)
|
2011-12-29 05:20:15 +08:00
|
|
|
|
if(NOT WINDOWS AND ((COMPILER_GCC AND NOT GCC_VERSION VERSION_LESS "4") OR (COMPILER_CLANG AND NOT CLANG_VERSION VERSION_LESS "3")))
|
|
|
|
|
set_target_properties(${target} PROPERTIES COMPILE_FLAGS -fvisibility=hidden)
|
2011-10-17 01:30:37 +08:00
|
|
|
|
endif()
|
|
|
|
|
|
2010-08-19 23:59:24 +08:00
|
|
|
|
# link the target to its SFML dependencies
|
|
|
|
|
if(THIS_DEPENDS)
|
|
|
|
|
target_link_libraries(${target} ${THIS_DEPENDS})
|
|
|
|
|
endif()
|
|
|
|
|
|
2011-10-17 01:30:37 +08:00
|
|
|
|
# build frameworks or dylibs
|
|
|
|
|
if(MACOSX AND BUILD_SHARED_LIBS)
|
2012-04-19 01:07:47 +08:00
|
|
|
|
if(SFML_BUILD_FRAMEWORKS)
|
2011-10-17 01:30:37 +08:00
|
|
|
|
# adapt target to build frameworks instead of dylibs
|
|
|
|
|
set_target_properties(${target} PROPERTIES
|
|
|
|
|
FRAMEWORK TRUE
|
|
|
|
|
FRAMEWORK_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}
|
|
|
|
|
MACOSX_FRAMEWORK_IDENTIFIER org.sfml-dev.${target}
|
|
|
|
|
MACOSX_FRAMEWORK_SHORT_VERSION_STRING ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}
|
|
|
|
|
MACOSX_FRAMEWORK_BUNDLE_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
# adapt install directory to allow distributing dylibs/frameworks in user’s frameworks/application bundle
|
|
|
|
|
set_target_properties(${target} PROPERTIES
|
|
|
|
|
BUILD_WITH_INSTALL_RPATH 1
|
|
|
|
|
INSTALL_NAME_DIR "@executable_path/../Frameworks")
|
|
|
|
|
endif()
|
|
|
|
|
|
2010-08-19 23:59:24 +08:00
|
|
|
|
# link the target to its external dependencies
|
|
|
|
|
if(THIS_EXTERNAL_LIBS)
|
|
|
|
|
if(BUILD_SHARED_LIBS)
|
|
|
|
|
# in shared build, we use the regular linker commands
|
2011-08-20 18:14:55 +08:00
|
|
|
|
target_link_libraries(${target} ${THIS_EXTERNAL_LIBS})
|
2010-08-19 23:59:24 +08:00
|
|
|
|
else()
|
|
|
|
|
# in static build there's no link stage, but with some compilers it is possible to force
|
|
|
|
|
# the generated static library to directly contain the symbols from its dependencies
|
|
|
|
|
sfml_static_add_libraries(${target} ${THIS_EXTERNAL_LIBS})
|
|
|
|
|
endif()
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
# add the install rule
|
|
|
|
|
install(TARGETS ${target}
|
|
|
|
|
RUNTIME DESTINATION bin COMPONENT bin
|
2010-11-08 00:50:00 +08:00
|
|
|
|
LIBRARY DESTINATION lib${LIB_SUFFIX} COMPONENT bin
|
2011-10-17 01:30:37 +08:00
|
|
|
|
ARCHIVE DESTINATION lib${LIB_SUFFIX} COMPONENT devel
|
2011-08-20 18:14:55 +08:00
|
|
|
|
FRAMEWORK DESTINATION ${CMAKE_INSTALL_FRAMEWORK_PREFIX} COMPONENT bin)
|
2010-08-19 23:59:24 +08:00
|
|
|
|
|
|
|
|
|
endmacro()
|
|
|
|
|
|
|
|
|
|
# add a new target which is a SFML example
|
|
|
|
|
# ex: sfml_add_example(ftp
|
|
|
|
|
# SOURCES ftp.cpp ...
|
|
|
|
|
# DEPENDS sfml-network sfml-system)
|
|
|
|
|
macro(sfml_add_example target)
|
|
|
|
|
|
|
|
|
|
# parse the arguments
|
2013-08-08 01:57:59 +08:00
|
|
|
|
cmake_parse_arguments(THIS "GUI_APP" "" "SOURCES;DEPENDS" ${ARGN})
|
2010-08-19 23:59:24 +08:00
|
|
|
|
|
2013-02-22 03:25:11 +08:00
|
|
|
|
# set a source group for the source files
|
|
|
|
|
source_group("" FILES ${THIS_SOURCES})
|
|
|
|
|
|
2010-08-19 23:59:24 +08:00
|
|
|
|
# create the target
|
|
|
|
|
if(THIS_GUI_APP AND WINDOWS)
|
|
|
|
|
add_executable(${target} WIN32 ${THIS_SOURCES})
|
|
|
|
|
target_link_libraries(${target} sfml-main)
|
|
|
|
|
else()
|
|
|
|
|
add_executable(${target} ${THIS_SOURCES})
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
# set the debug suffix
|
|
|
|
|
set_target_properties(${target} PROPERTIES DEBUG_POSTFIX -d)
|
|
|
|
|
|
2013-02-26 02:17:46 +08:00
|
|
|
|
# set the target's folder (for IDEs that support it, e.g. Visual Studio)
|
|
|
|
|
set_target_properties(${target} PROPERTIES FOLDER "Examples")
|
|
|
|
|
|
2012-04-19 01:07:47 +08:00
|
|
|
|
# for gcc >= 4.0 on Windows, apply the SFML_USE_STATIC_STD_LIBS option if it is enabled
|
|
|
|
|
if(WINDOWS AND COMPILER_GCC AND SFML_USE_STATIC_STD_LIBS)
|
2011-12-29 05:20:15 +08:00
|
|
|
|
if(NOT GCC_VERSION VERSION_LESS "4")
|
2011-05-16 05:53:36 +08:00
|
|
|
|
set_target_properties(${target} PROPERTIES LINK_FLAGS "-static-libgcc -static-libstdc++")
|
2010-08-19 23:59:24 +08:00
|
|
|
|
endif()
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
# link the target to its SFML dependencies
|
|
|
|
|
if(THIS_DEPENDS)
|
|
|
|
|
target_link_libraries(${target} ${THIS_DEPENDS})
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
# add the install rule
|
|
|
|
|
install(TARGETS ${target}
|
|
|
|
|
RUNTIME DESTINATION ${INSTALL_MISC_DIR}/examples/${target} COMPONENT examples)
|
|
|
|
|
|
2013-04-06 16:20:58 +08:00
|
|
|
|
# install the example's source code
|
|
|
|
|
install(FILES ${THIS_SOURCES}
|
|
|
|
|
DESTINATION ${INSTALL_MISC_DIR}/examples/${target}
|
|
|
|
|
COMPONENT examples)
|
|
|
|
|
|
2010-08-19 23:59:24 +08:00
|
|
|
|
# install the example's resources as well
|
|
|
|
|
set(EXAMPLE_RESOURCES "${CMAKE_SOURCE_DIR}/examples/${target}/resources")
|
|
|
|
|
if(EXISTS ${EXAMPLE_RESOURCES})
|
|
|
|
|
install(DIRECTORY ${EXAMPLE_RESOURCES}
|
|
|
|
|
DESTINATION ${INSTALL_MISC_DIR}/examples/${target}
|
2013-04-06 16:20:58 +08:00
|
|
|
|
COMPONENT examples)
|
2010-08-19 23:59:24 +08:00
|
|
|
|
endif()
|
2013-08-08 01:57:59 +08:00
|
|
|
|
|
2010-08-19 23:59:24 +08:00
|
|
|
|
endmacro()
|