2024-03-08 22:55:34 +01:00
|
|
|
cmake_minimum_required(VERSION 3.9...3.24 FATAL_ERROR)
|
|
|
|
|
2024-05-28 17:34:56 +02:00
|
|
|
add_library(plugin_doom_imgui MODULE
|
2024-03-09 14:41:56 +01:00
|
|
|
./plugin_doom_imgui.cpp
|
|
|
|
)
|
|
|
|
target_compile_features(plugin_doom_imgui PUBLIC cxx_std_17)
|
2024-05-19 11:33:40 +02:00
|
|
|
set_target_properties(plugin_doom_imgui PROPERTIES
|
|
|
|
C_VISIBILITY_PRESET hidden
|
|
|
|
)
|
2024-03-09 14:41:56 +01:00
|
|
|
target_link_libraries(plugin_doom_imgui PUBLIC
|
|
|
|
solDOOM_imgui
|
|
|
|
solanaceae_plugin
|
|
|
|
)
|
|
|
|
|
|
|
|
########################################
|
2024-03-08 22:55:34 +01:00
|
|
|
|