summaryrefslogtreecommitdiffhomepage
path: root/proto-iokit-foohid
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2018-02-12 17:17:27 +0100
committerStanislaw Halik <sthalik@misaki.pl>2018-02-12 17:50:39 +0100
commit958f906892ec59a8575b85f939164bc435212420 (patch)
tree263d0fd775a11e4868b74c8f57d9e3102ddde6cc /proto-iokit-foohid
parent57c5de5228485637e6dac2ed28e7c727e14d602f (diff)
cmake: remove otr_prop()
It's too complex to be understood when written in CMake. Replace with explicit calls to set_property(). This hasn't been tested on OSX.
Diffstat (limited to 'proto-iokit-foohid')
-rw-r--r--proto-iokit-foohid/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto-iokit-foohid/CMakeLists.txt b/proto-iokit-foohid/CMakeLists.txt
index b997bf60..cdc8fb69 100644
--- a/proto-iokit-foohid/CMakeLists.txt
+++ b/proto-iokit-foohid/CMakeLists.txt
@@ -1,4 +1,4 @@
IF(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
otr_module(proto-iokit-foohid)
- otr_prop(TARGET opentrack-proto-iokit-foohid LINK_FLAGS "-framework IOKit")
+ set_property(TARGET opentrack-proto-iokit-foohid APPEND_STRING PROPERTY LINK_FLAGS "-framework IOKit ")
endif()