diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-02-10 02:06:27 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-02-10 02:06:27 +0100 |
commit | 94e6e5be8281cb759a06a3b18f4f25a1c87142e2 (patch) | |
tree | ba00eca761beb0064c066071d24b027bd7c93211 /migration/CMakeLists.txt | |
parent | 3c702e840b23aa350412d53437b34fee7516e00e (diff) |
cmake: use target_{compile,link}_options
Diffstat (limited to 'migration/CMakeLists.txt')
-rw-r--r-- | migration/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/CMakeLists.txt b/migration/CMakeLists.txt index 1e187971..b2dfac6d 100644 --- a/migration/CMakeLists.txt +++ b/migration/CMakeLists.txt @@ -1,5 +1,5 @@ otr_module(migration BIN) target_link_libraries(opentrack-migration opentrack-logic opentrack-spline) if(CMAKE_COMPILER_IS_CLANGXX) - target_compile_options(${self} PRIVATE "-Wno-weak-vtables") + target_compile_options(${self} PRIVATE -Wno-weak-vtables) endif() |