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 /anim-crop-tool | |
parent | a4a9c191018ad225d36665eaf33f9dbff27514c4 (diff) |
cmake: fix constantly relinking
Diffstat (limited to 'anim-crop-tool')
-rw-r--r-- | anim-crop-tool/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/anim-crop-tool/CMakeLists.txt b/anim-crop-tool/CMakeLists.txt index 91b3c1b0..9fd5f57d 100644 --- a/anim-crop-tool/CMakeLists.txt +++ b/anim-crop-tool/CMakeLists.txt @@ -12,5 +12,5 @@ if(OpenCV_FOUND) add_executable(${self} "${sources}") target_link_libraries(${self} PRIVATE floormat-serialize floormat) - install(TARGETS ${self} RUNTIME DESTINATION "bin") + fm_add_install_executable(${self}) endif() |