diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2021-11-20 19:08:49 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2021-11-20 19:08:49 +0100 |
commit | c9bad7aafa853618b306dd9d8efcbfe6a905fb26 (patch) | |
tree | 7227c58ca70c887da2925f88b25ae67923bdf8e7 | |
parent | dbb5a9a45b904942c575dce9c0eef9b9e4c91cf2 (diff) |
cmake: fix typoopentrack-2021.2.0
-rw-r--r-- | cmake/opentrack-boilerplate.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/opentrack-boilerplate.cmake b/cmake/opentrack-boilerplate.cmake index 800e2480..f074c79b 100644 --- a/cmake/opentrack-boilerplate.cmake +++ b/cmake/opentrack-boilerplate.cmake @@ -84,7 +84,7 @@ function(otr_compat target) endif() get_property(type TARGET "${n}" PROPERTY TYPE) - if (".${TYPE}" STREQUAL ".EXECUTABLE") + if (type STREQUAL "EXECUTABLE") otr_fixup_subsystem(${target}) endif() endfunction() |