mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-08-25 12:23:58 -04:00
e5d92fbf43
Only show in developer changelog
24 lines
386 B
CMake
24 lines
386 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
project(Scene3D)
|
|
gd_add_extension_includes()
|
|
|
|
# Defines
|
|
#
|
|
gd_add_extension_definitions(Scene3D)
|
|
|
|
# The targets
|
|
#
|
|
include_directories(.)
|
|
file(
|
|
GLOB
|
|
source_files
|
|
*.cpp
|
|
*.h)
|
|
gd_add_clang_utils(Scene3D "${source_files}")
|
|
gd_add_extension_target(Scene3D "${source_files}")
|
|
|
|
# Linker files for the IDE extension
|
|
#
|
|
gd_extension_link_libraries(Scene3D)
|