@ -1,6 +1,9 @@
# A l l s o r t s o f t h i n g s t h a t w e n e e d c r o s s p r o j e c t
cmake_minimum_required ( VERSION 2.8.0 )
set ( WITH_SYSTEM_GLFW OFF CACHE STRING "Link raylib against system GLFW instead of embedded one" )
set_property ( CACHE WITH_SYSTEM_GLFW PROPERTY STRINGS ON OFF IF_POSSIBLE )
# L i n k i n g f o r O S X - f r a m e w o r k o p t i o n s
# W i l l d o n o t h i n g o n o t h e r O S e s
if ( APPLE )
@ -27,24 +30,59 @@ else()
find_library ( XINERAMA_LIBRARY Xinerama )
find_library ( XXF86VM_LIBRARY Xxf86vm )
find_library ( XCURSOR_LIBRARY Xcursor )
include_directories ( ${ OPENGL_INCLUDE_DIR } )
set ( LIBS_PRIVATE m ${ pthread } ${ OPENGL_LIBRARIES } ${ X11_LIBRARIES } ${ XRANDR_LIBRARY } ${ XINERAMA_LIBRARY } ${ XI_LIBRARY } ${ XXF86VM_LIBRARY } ${ XCURSOR_LIBRARY } )
endif ( )
endif ( )
if ( WITH_SYSTEM_GLFW STREQUAL "ON" )
find_package ( glfw3 3.2.1 REQUIRED )
else ( WITH_SYSTEM_GLFW STREQUAL "IF_POSSIBLE" )
find_package ( glfw3 3.2.1 )
endif ( )
if ( glfw3_FOUND )
set ( LIBS_PRIVATE ${ LIBS_PRIVATE } glfw )
endif ( )
if ( CMAKE_SYSTEM_NAME STREQUAL Linux )
set ( LINUX TRUE )
set ( LIBS_PRIVATE dl ${ LIBS_PRIVATE } )
endif ( )
foreach ( L ${ LIBS_PRIVATE } )
get_filename_component ( DIR ${ L } PATH )
get_filename_component ( LIBFILE ${ L } NAME_WE )
STRING ( REGEX REPLACE "^lib" "" FILE ${ LIBFILE } )
if ( ${ L } MATCHES "[.]framework$" )
set ( FILE_OPT "-framework ${FILE}" )
set ( DIR_OPT "-F${DIR}" )
else ( )
set ( FILE_OPT "-l${FILE}" )
set ( DIR_OPT "-L${DIR}" )
endif ( )
if ( "${DIR}" STREQUAL "" OR "${DIR}" STREQUAL "${LASTDIR}" )
set ( DIR_OPT "" )
endif ( )
set ( LASTDIR ${ DIR } )
set ( PKG_CONFIG_LIBS_PRIVATE ${ PKG_CONFIG_LIBS_PRIVATE } ${ DIR_OPT } ${ FILE_OPT } )
string ( REPLACE ";" " " PKG_CONFIG_LIBS_PRIVATE "${PKG_CONFIG_LIBS_PRIVATE}" )
endforeach ( L )
# D o t h e l i n k i n g f o r e x e c u t a b l e s t h a t a r e m e a n t t o l i n k r a y l i b
function ( link_libraries_to_executable executable )
# A n d r a y l i b
target_link_libraries ( ${ executable } raylib )
# L i n k t h e l i b r a r i e s
target_link_libraries ( ${ executable } ${ LIBS_PRIVATE } )
# L i n k r a y l i b
if ( TARGET raylib_shared )
target_link_libraries ( ${ executable } raylib_shared )
else ( )
target_link_libraries ( ${ executable } raylib ${ PKG_CONFIG_LIBS_PRIVATE } )
endif ( )
endfunction ( )