Files
GDevelop/Extensions/ParticleSystem/CMakeLists.txt
Florian Rival 2b60377820 Remove deprecated/unused/unmaintained GDCpp code
* This also includes extensions code.

Only show in developer changelog
2021-08-16 23:23:09 +02:00

22 lines
450 B
CMake

cmake_minimum_required(VERSION 2.6)
cmake_policy(SET CMP0015 NEW)
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)