mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 17:26:01 +08:00
24 lines
793 B
CMake
24 lines
793 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(spine-cpp)
|
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/../flags.cmake)
|
|
|
|
include_directories(include)
|
|
file(GLOB INCLUDES "spine-cpp/include/**/*.h")
|
|
file(GLOB SOURCES "spine-cpp/src/**/*.cpp")
|
|
|
|
add_library(spine-cpp STATIC ${SOURCES} ${INCLUDES})
|
|
target_include_directories(spine-cpp PUBLIC spine-cpp/include)
|
|
|
|
add_library(spine-cpp-lite STATIC ${SOURCES} ${INCLUDES} spine-cpp-lite/spine-cpp-lite.cpp)
|
|
target_include_directories(spine-cpp-lite PUBLIC spine-cpp/include spine-cpp-lite)
|
|
|
|
# Install target
|
|
install(TARGETS spine-cpp EXPORT spine-cpp_TARGETS DESTINATION dist/lib)
|
|
install(FILES ${INCLUDES} DESTINATION dist/include)
|
|
|
|
# Export target
|
|
export(
|
|
EXPORT spine-cpp_TARGETS
|
|
FILE ${CMAKE_CURRENT_BINARY_DIR}/spine-cppTargets.cmake
|
|
NAMESPACE "Spine::") |