diff options
| author | info@mode42.com <info@mode42.com> | 2026-08-09 11:54:17 +0000 |
|---|---|---|
| committer | info@mode42.com <info@mode42.com> | 2026-08-09 11:54:17 +0000 |
| commit | a989bd16c40e04bba5a5404b0ef0cd22f19d2707 (patch) | |
| tree | 604a0439c7d8c022cbd483d62bdc2cfc1c8d18f8 /plugins/entertain/CMakeLists.txt | |
| parent | a72e5ea7558e5172c08d397d6f1e0e0f9273e694 (diff) | |
now including entertain/chess
Diffstat (limited to 'plugins/entertain/CMakeLists.txt')
| -rw-r--r-- | plugins/entertain/CMakeLists.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/plugins/entertain/CMakeLists.txt b/plugins/entertain/CMakeLists.txt new file mode 100644 index 0000000..b626028 --- /dev/null +++ b/plugins/entertain/CMakeLists.txt @@ -0,0 +1,27 @@ +add_library(hybbx_plugin_entertain STATIC + entertain.c + chess.c + chess_cmd.c +) + +find_package(Threads REQUIRED) + +target_include_directories(hybbx_plugin_entertain + PRIVATE ${CMAKE_SOURCE_DIR}/include + PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} +) + +target_compile_definitions(hybbx_plugin_entertain + PRIVATE HYBBX_PLUGIN_BUILD +) + +target_link_libraries(hybbx_plugin_entertain PRIVATE hybbx_core Threads::Threads) +hybbx_link_plugin_instances(hybbx_plugin_entertain HYBBX_HAVE_PLUGIN_ENTERTAIN) +hybbx_apply_hardening(hybbx_plugin_entertain) + +if(HYBBX_INSTALL_DEV) +install(TARGETS hybbx_plugin_entertain + ARCHIVE DESTINATION ${HYBBX_PLUGIN_INSTALL_DIR} + LIBRARY DESTINATION ${HYBBX_PLUGIN_INSTALL_DIR} +) +endif() |
