mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
24 lines
421 B
CMake
24 lines
421 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
project(ParticleSystem)
|
|
gd_add_extension_includes()
|
|
|
|
# Defines
|
|
#
|
|
gd_add_extension_definitions(ParticleSystem)
|
|
|
|
# The targets
|
|
#
|
|
include_directories(.)
|
|
file(
|
|
GLOB
|
|
source_files
|
|
*.cpp
|
|
*.h)
|
|
gd_add_clang_utils(ParticleSystem "${source_files}")
|
|
gd_add_extension_target(ParticleSystem "${source_files}")
|
|
|
|
# Linker files for the IDE extension
|
|
#
|
|
gd_extension_link_libraries(ParticleSystem)
|