Files
GDevelop/Extensions/Spine/CMakeLists.txt
Clément Pasteau 98b3687157 Fix cmake version for mac builds (#7531)
Do not show in changelog
2025-04-04 11:20:20 +02:00

24 lines
410 B
CMake

cmake_minimum_required(VERSION 3.5)
project(SpineObject)
gd_add_extension_includes()
# Defines
#
gd_add_extension_definitions(SpineObject)
# The targets
#
include_directories(.)
file(
GLOB
source_files
*.cpp
*.h)
gd_add_clang_utils(SpineObject "${source_files}")
gd_add_extension_target(SpineObject "${source_files}")
# Linker files for the IDE extension
#
gd_extension_link_libraries(SpineObject)