diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2020-03-29 16:39:13 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2020-03-29 16:39:32 +0200 |
commit | 5a95a9e670a815cc97934c16d0f1bec9b4b77a90 (patch) | |
tree | 3c71278cc5115ee661cbc5ae9ce063fa6428219c /video-ps3eye/CMakeLists.txt | |
parent | c7748ef20650007b4ef4067bcb5277a38dea12e0 (diff) |
fix build
Diffstat (limited to 'video-ps3eye/CMakeLists.txt')
-rw-r--r-- | video-ps3eye/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/video-ps3eye/CMakeLists.txt b/video-ps3eye/CMakeLists.txt index 7e2e6aa3..3423901b 100644 --- a/video-ps3eye/CMakeLists.txt +++ b/video-ps3eye/CMakeLists.txt @@ -42,8 +42,9 @@ endif() if(TARGET ps3eye-driver) add_executable(ps3eye-subprocess "wrapper.cxx" "shm.cxx") + target_link_libraries(ps3eye-subprocess ps3eye-driver) if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Linux") - target_link_libraries(ps3eye-subprocess rt ps3eye-driver) + target_link_libraries(ps3eye-subprocess rt) endif() install(TARGETS "ps3eye-subprocess" DESTINATION "${opentrack-libexec}") endif() |