2010-08-19 23:59:24 +08:00
cmake_minimum_required ( VERSION 2.8 )
2012-01-02 05:50:44 +08:00
# define a macro that helps defining an option
macro ( sfml_set_option var default type docstring )
2012-01-02 14:47:13 +08:00
if ( NOT DEFINED ${ var } )
2012-01-02 05:50:44 +08:00
set ( ${ var } ${ default } )
endif ( )
set ( ${ var } ${ ${var } } CACHE ${ type } ${ docstring } FORCE )
endmacro ( )
2010-08-19 23:59:24 +08:00
# set a default build type if none was provided
# this has to be done before the project() instruction!
2012-01-02 05:50:44 +08:00
sfml_set_option ( CMAKE_BUILD_TYPE Release STRING "Choose the type of build (Debug or Release)" )
2010-08-19 23:59:24 +08:00
# project name
project ( SFML )
# include the configuration file
2011-08-07 21:33:42 +08:00
include ( ${ CMAKE_CURRENT_SOURCE_DIR } /cmake/Config.cmake )
2010-08-19 23:59:24 +08:00
# setup version numbers
set ( VERSION_MAJOR 2 )
set ( VERSION_MINOR 0 )
set ( VERSION_PATCH 0 )
# add the SFML header path
2011-08-07 21:33:42 +08:00
include_directories ( ${ CMAKE_CURRENT_SOURCE_DIR } /include )
2010-08-19 23:59:24 +08:00
# add an option for choosing the build type (shared or static)
2012-01-02 05:50:44 +08:00
sfml_set_option ( BUILD_SHARED_LIBS TRUE BOOL "TRUE to build SFML as shared libraries, FALSE to build it as static libraries" )
2010-08-19 23:59:24 +08:00
# add an option for building the examples
2012-04-19 01:07:47 +08:00
sfml_set_option ( SFML_BUILD_EXAMPLES FALSE BOOL "TRUE to build the SFML examples, FALSE to ignore them" )
2010-08-19 23:59:24 +08:00
# add an option for building the API documentation
2012-04-19 01:07:47 +08:00
sfml_set_option ( SFML_BUILD_DOC FALSE BOOL "TRUE to generate the API documentation, FALSE to ignore it" )
2011-05-16 05:53:36 +08:00
# Mac OS X specific options
2011-12-15 02:54:44 +08:00
if ( MACOSX )
# add an option to build frameworks instead of dylibs (release only)
2012-04-19 01:07:47 +08:00
sfml_set_option ( SFML_BUILD_FRAMEWORKS FALSE BOOL "TRUE to build SFML as frameworks libraries (release only), FALSE to build according to BUILD_SHARED_LIBS" )
2011-12-15 02:54:44 +08:00
# add an option to let the user specify a custom directory for frameworks installation (SFML, sndfile, ...)
2012-01-02 05:50:44 +08:00
sfml_set_option ( CMAKE_INSTALL_FRAMEWORK_PREFIX "/Library/Frameworks" STRING "Frameworks installation directory" )
2011-12-15 02:54:44 +08:00
# add an option to automatically install Xcode 4 templates
2012-04-19 01:07:47 +08:00
sfml_set_option ( SFML_INSTALL_XCODE4_TEMPLATES FALSE BOOL "TRUE to automatically install the Xcode 4 templates, FALSE to do nothing about it" )
2011-03-31 01:52:36 +08:00
endif ( )
2010-08-19 23:59:24 +08:00
2010-11-05 21:58:29 +08:00
# define SFML_STATIC if the build type is not set to 'shared'
if ( NOT BUILD_SHARED_LIBS )
add_definitions ( -DSFML_STATIC )
2010-08-19 23:59:24 +08:00
endif ( )
# remove SL security warnings with Visual C++
2011-12-29 04:39:23 +08:00
if ( COMPILER_MSVC )
2010-08-19 23:59:24 +08:00
add_definitions ( -D_CRT_SECURE_NO_DEPRECATE )
endif ( )
2011-05-16 05:53:36 +08:00
# define an option for choosing between static and dynamic C runtime (Windows only)
if ( WINDOWS )
2012-04-19 01:07:47 +08:00
sfml_set_option ( SFML_USE_STATIC_STD_LIBS FALSE BOOL "TRUE to statically link to the standard libraries, FALSE to use them as DLLs" )
2011-05-16 05:53:36 +08:00
# for VC++, we can apply it globally by modifying the compiler flags
2012-04-19 01:07:47 +08:00
if ( COMPILER_MSVC AND SFML_USE_STATIC_STD_LIBS )
2011-03-27 06:24:09 +08:00
foreach ( flag
C M A K E _ C X X _ F L A G S C M A K E _ C X X _ F L A G S _ D E B U G C M A K E _ C X X _ F L A G S _ R E L E A S E
C M A K E _ C X X _ F L A G S _ M I N S I Z E R E L C M A K E _ C X X _ F L A G S _ R E L W I T H D E B I N F O )
if ( ${ flag } MATCHES "/MD" )
string ( REGEX REPLACE "/MD" "/MT" ${ flag } "${${flag}}" )
endif ( )
endforeach ( )
endif ( )
endif ( )
2010-08-19 23:59:24 +08:00
# disable the rpath stuff
2011-05-16 05:53:36 +08:00
set ( CMAKE_SKIP_BUILD_RPATH TRUE )
2011-12-15 02:54:44 +08:00
# Setup Mac OS X stuff
if ( MACOSX )
# multi arch support - by default : i386 and x86_64
2012-01-02 05:50:44 +08:00
sfml_set_option ( CMAKE_OSX_ARCHITECTURES "i386;x86_64" STRING "Build architectures for OSX" )
2011-12-15 02:54:44 +08:00
# multi SDK support - by default we choose the older SDK available starting by 10.5 SDK
if ( NOT OSX_CONFIG_HAS_BEEN_RUN_BEFORE )
if ( EXISTS /Developer/SDKs/MacOSX10.5.sdk )
# target 10.5 system
2012-01-02 05:50:44 +08:00
sfml_set_option ( CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX10.5.sdk"
S T R I N G " T h e p r o d u c t w i l l b e b u i l t a g a i n s t t h e h e a d e r s a n d l i b r a r i e s l o c a t e d i n s i d e t h e i n d i c a t e d S D K . S e t t o e m p t y s t r i n g f o r d e f a u l t v a l u e . " )
sfml_set_option ( CMAKE_OSX_DEPLOYMENT_TARGET "10.5"
2012-01-03 19:35:49 +08:00
S T R I N G " M i n i m u m O S X v e r s i o n t o t a r g e t f o r deployment ( at runtime ) , n e w e r A P I s w e a k l i n k e d . " )
2011-12-15 02:54:44 +08:00
elseif ( EXISTS /Developer/SDKs/MacOSX10.6.sdk )
# target 10.6 system
2012-01-02 05:50:44 +08:00
sfml_set_option ( CMAKE_OSX_SYSROOT "/Developer/SDKs/MacOSX10.6.sdk"
S T R I N G " T h e p r o d u c t w i l l b e b u i l t a g a i n s t t h e h e a d e r s a n d l i b r a r i e s l o c a t e d i n s i d e t h e i n d i c a t e d S D K . S e t t o e m p t y s t r i n g f o r d e f a u l t v a l u e . " )
sfml_set_option ( CMAKE_OSX_DEPLOYMENT_TARGET "10.6"
2012-01-03 19:35:49 +08:00
S T R I N G " M i n i m u m O S X v e r s i o n t o t a r g e t f o r deployment ( at runtime ) , n e w e r A P I s w e a k l i n k e d . " )
2011-12-15 02:54:44 +08:00
else ( )
# use default SDK.
endif ( )
# note : we use OSX_CONFIG_HAS_BEEN_RUN_BEFORE to be able to let the user set his/her custom settings
# so we don't always have to FORCE the value of CMAKE_OSX_DEPLOYMENT_TARGET and CMAKE_OSX_SYSROOT
set ( OSX_CONFIG_HAS_BEEN_RUN_BEFORE TRUE
C A C H E B O O L " D o n ' t e d i t t h i s v a l u e ; y o u s h o u l d i n s t e a d e m p t y y o u r c a c h e . "
F O R C E )
mark_as_advanced ( OSX_CONFIG_HAS_BEEN_RUN_BEFORE )
2011-06-05 00:23:06 +08:00
endif ( )
2011-05-16 05:53:36 +08:00
2011-12-15 02:54:44 +08:00
# BUILD_FRAMEWORKS needs two things :
# first, it's available only for release
# (because cmake currently doesn't allow specifying a custom framework name so XXX-d is not possible)
# secondly, it works only with BUILD_SHARED_LIBS enabled
2012-04-19 01:07:47 +08:00
if ( SFML_BUILD_FRAMEWORKS )
2011-12-15 02:54:44 +08:00
# requirement #1
if ( NOT CMAKE_BUILD_TYPE STREQUAL "Release" )
2012-04-19 01:07:47 +08:00
message ( FATAL_ERROR "CMAKE_BUILD_TYPE should be \" Release\ " when SFML_BUILD_FRAMEWORKS is TRUE" )
2011-12-15 02:54:44 +08:00
return ( )
endif ( )
# requirement #2
if ( NOT BUILD_SHARED_LIBS )
2012-04-19 01:07:47 +08:00
message ( FATAL_ERROR "BUILD_SHARED_LIBS should be TRUE when SFML_BUILD_FRAMEWORKS is TRUE" )
2011-12-15 02:54:44 +08:00
return ( )
endif ( )
2011-05-16 05:53:36 +08:00
endif ( )
2011-03-31 01:52:36 +08:00
endif ( )
2010-08-19 23:59:24 +08:00
2012-01-11 05:08:20 +08:00
if ( LINUX )
if ( BUILD_SHARED_LIBS )
2012-04-19 01:07:47 +08:00
sfml_set_option ( SFML_INSTALL_PKGCONFIG_FILES TRUE BOOL "TRUE to automatically install pkg-config files so other projects can find SFML" )
if ( SFML_INSTALL_PKGCONFIG_FILES )
2012-01-11 05:08:20 +08:00
foreach ( sfml_module IN ITEMS all system window graphics audio network )
CONFIGURE_FILE (
" t o o l s / p k g - c o n f i g / s f m l - $ { s f m l _ m o d u l e } . p c . i n "
" t o o l s / p k g - c o n f i g / s f m l - $ { s f m l _ m o d u l e } . p c "
@ O N L Y )
INSTALL ( FILES "${CMAKE_CURRENT_BINARY_DIR}/tools/pkg-config/sfml-${sfml_module}.pc"
D E S T I N A T I O N " $ { C M A K E _ I N S T A L L _ P R E F I X } / l i b $ { L I B _ S U F F I X } / p k g c o n f i g " )
endforeach ( )
endif ( )
else ( )
2012-04-19 01:07:47 +08:00
if ( SFML_INSTALL_PKGCONFIG_FILES )
message ( WARNING "No pkg-config files are provided for the static SFML libraries (SFML_INSTALL_PKGCONFIG_FILES will be ignored)." )
2012-01-11 05:08:20 +08:00
endif ( )
endif ( )
endif ( )
2010-08-19 23:59:24 +08:00
# add the subdirectories
add_subdirectory ( src/SFML )
2012-04-19 01:07:47 +08:00
if ( SFML_BUILD_EXAMPLES )
2010-08-19 23:59:24 +08:00
add_subdirectory ( examples )
endif ( )
2012-04-19 01:07:47 +08:00
if ( SFML_BUILD_DOC )
2010-08-19 23:59:24 +08:00
add_subdirectory ( doc )
endif ( )
2011-12-15 02:54:44 +08:00
# setup the install rules
2012-04-19 01:07:47 +08:00
if ( NOT SFML_BUILD_FRAMEWORKS )
2011-08-20 18:14:55 +08:00
install ( DIRECTORY include
D E S T I N A T I O N .
C O M P O N E N T d e v e l
2011-12-15 02:54:44 +08:00
P A T T E R N " . s v n " E X C L U D E )
else ( )
# find only "root" headers
file ( GLOB SFML_HEADERS RELATIVE ${ PROJECT_SOURCE_DIR } "include/SFML/*" )
# in fact we have to fool cmake to copy all the headers in subdirectories
# to do that we have to add the "root" headers to the PUBLIC_HEADER
# then we can run a post script to copy the remaining headers
# we need a dummy file in order to compile the framework
add_custom_command ( OUTPUT ${ CMAKE_CURRENT_BINARY_DIR } /dummy.cpp
C O M M A N D t o u c h $ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / d u m m y . c p p )
set ( SFML_SOURCES ${ SFML_HEADERS } )
list ( APPEND SFML_SOURCES ${ CMAKE_CURRENT_BINARY_DIR } /dummy.cpp )
# create SFML.framework
add_library ( SFML ${ SFML_SOURCES } )
# edit target properties
set_target_properties ( SFML PROPERTIES
F R A M E W O R K T R U E
F R A M E W O R K _ V E R S I O N $ { V E R S I O N _ M A J O R } . $ { V E R S I O N _ M I N O R } . $ { V E R S I O N _ P A T C H }
M A C O S X _ F R A M E W O R K _ I D E N T I F I E R o r g . s f m l - d e v . S F M L
M A C O S X _ F R A M E W O R K _ S H O R T _ V E R S I O N _ S T R I N G $ { V E R S I O N _ M A J O R } . $ { V E R S I O N _ M I N O R } . $ { V E R S I O N _ P A T C H }
M A C O S X _ F R A M E W O R K _ B U N D L E _ V E R S I O N $ { V E R S I O N _ M A J O R } . $ { V E R S I O N _ M I N O R } . $ { V E R S I O N _ P A T C H }
P U B L I C _ H E A D E R " $ { S F M L _ H E A D E R S } " )
# add the remaining headers
add_custom_command ( TARGET SFML
P O S T _ B U I L D
C O M M A N D c p - r $ { P R O J E C T _ S O U R C E _ D I R } / i n c l u d e / S F M L / * S F M L . f r a m e w o r k / V e r s i o n s / 2 . 0 . 0 / H e a d e r s )
# adapt install directory to allow distributing dylibs/frameworks in user’ s frameworks/application bundle
# NOTE : it's not required to link agains SFML.framework
set_target_properties ( SFML PROPERTIES
B U I L D _ W I T H _ I N S T A L L _ R P A T H 1
I N S T A L L _ N A M E _ D I R " @ e x e c u t a b l e _ p a t h / . . / F r a m e w o r k s " )
# install rule
install ( TARGETS SFML
F R A M E W O R K D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ F R A M E W O R K _ P R E F I X }
C O M P O N E N T d e v e l )
endif ( )
install ( FILES cmake/Modules/FindSFML.cmake DESTINATION ${ INSTALL_MISC_DIR } /cmake/Modules )
install ( FILES license.txt DESTINATION ${ INSTALL_MISC_DIR } )
2012-04-08 17:22:36 +08:00
install ( FILES readme.txt DESTINATION ${ INSTALL_MISC_DIR } )
2011-12-15 02:54:44 +08:00
2010-08-19 23:59:24 +08:00
if ( WINDOWS )
2011-03-29 00:20:27 +08:00
if ( ARCH_32BITS )
install ( FILES extlibs/bin/x86/libsndfile-1.dll DESTINATION bin )
install ( FILES extlibs/bin/x86/openal32.dll DESTINATION bin )
2012-01-04 01:02:18 +08:00
elseif ( ARCH_64BITS )
2011-03-29 00:20:27 +08:00
install ( FILES extlibs/bin/x64/libsndfile-1.dll DESTINATION bin )
install ( FILES extlibs/bin/x64/openal32.dll DESTINATION bin )
endif ( )
2011-03-27 06:24:09 +08:00
elseif ( MACOSX )
2011-12-15 02:54:44 +08:00
install ( DIRECTORY extlibs/libs-osx/Frameworks/sndfile.framework DESTINATION ${ CMAKE_INSTALL_FRAMEWORK_PREFIX } )
2012-04-19 01:07:47 +08:00
if ( SFML_INSTALL_XCODE4_TEMPLATES )
2012-01-25 00:28:22 +08:00
install ( DIRECTORY tools/xcode/templates/SFML DESTINATION /Library/Developer/Xcode/Templates )
2011-08-20 18:14:55 +08:00
endif ( )
2010-08-19 23:59:24 +08:00
endif ( )