Compare commits

...

1 Commits

Author SHA1 Message Date
Clément Pasteau
35e9297844 Fix cmake version build 2025-04-04 10:12:34 +02:00

View File

@@ -1,20 +1,23 @@
cmake_minimum_required(VERSION 2.6)
cmake_policy(SET CMP0015 NEW)
cmake_minimum_required(VERSION 3.5)
project(SpineObject)
gd_add_extension_includes()
#Defines
###
# Defines
#
gd_add_extension_definitions(SpineObject)
#The targets
###
# The targets
#
include_directories(.)
file(GLOB source_files *.cpp *.h)
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
###
# Linker files for the IDE extension
#
gd_extension_link_libraries(SpineObject)