diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-10-17 00:12:27 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-10-17 00:12:27 +0200 |
commit | 07ae849c48de49b2644e78fa02fda63275104164 (patch) | |
tree | 1c4c5abc01648280d45f33a5b107b1dd36afa4a8 /editor | |
parent | a4a9c191018ad225d36665eaf33f9dbff27514c4 (diff) |
cmake: fix constantly relinking
Diffstat (limited to 'editor')
-rw-r--r-- | editor/CMakeLists.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/editor/CMakeLists.txt b/editor/CMakeLists.txt index 40c7016f..74da3536 100644 --- a/editor/CMakeLists.txt +++ b/editor/CMakeLists.txt @@ -31,5 +31,4 @@ if (FLOORMAT_ASAN) endif() target_link_libraries(${self} PRIVATE ${self}_o floormat-main floormat-serialize floormat-draw floormat) -install(TARGETS ${self} RUNTIME DESTINATION bin) -fm_add_debug_info(${self}) +fm_add_install_executable(${self}) |