You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
763 B
32 lines
763 B
2 years ago
|
cmake_minimum_required(VERSION 2.8)
|
||
|
project(GKlib C)
|
||
|
|
||
|
option(BUILD_SHARED_LIBS "Build shared libraries (.dll/.so) instead of static ones (.lib/.a)" OFF)
|
||
|
|
||
|
get_filename_component(abs "." ABSOLUTE)
|
||
|
set(GKLIB_PATH ${abs})
|
||
|
unset(abs)
|
||
|
include(GKlibSystem.cmake)
|
||
|
|
||
|
include_directories(".")
|
||
|
if(MSVC)
|
||
|
include_directories("win32")
|
||
|
file(GLOB win32_sources RELATIVE "win32" "*.c")
|
||
|
else(MSVC)
|
||
|
set(win32_sources, "")
|
||
|
endif(MSVC)
|
||
|
|
||
|
add_library(GKlib ${GKlib_sources} ${win32_sources})
|
||
|
|
||
|
if(UNIX)
|
||
|
target_link_libraries(GKlib m)
|
||
|
endif(UNIX)
|
||
|
|
||
|
include_directories("test")
|
||
|
add_subdirectory("test")
|
||
|
|
||
|
install(TARGETS GKlib
|
||
|
ARCHIVE DESTINATION lib/${LINSTALL_PATH}
|
||
|
LIBRARY DESTINATION lib/${LINSTALL_PATH})
|
||
|
install(FILES ${GKlib_includes} DESTINATION include/${HINSTALL_PATH})
|