Files
supertree-wook ee22b2e4b1 Upgrade CMake minimum version and improve CMake code (#5446)
Only show in developer changelog
2023-06-28 12:01:05 +02:00

24 lines
426 B
CMake

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