diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-06-21 13:40:39 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-06-21 13:40:39 +0200 |
commit | 68a9ac0475aaf87db2b40940ae4ed88a67610d8e (patch) | |
tree | 0223d214fd2a72ea823bd2e5916c4413176bbedc /video-ps3eye/PS3EYEDriver/sdl/CMakeLists.txt | |
parent | 1896548fce4f4dd45155b65c2affa6596f6a993e (diff) |
video/ps3eye: kill wrong ps3eyedriver fork
Diffstat (limited to 'video-ps3eye/PS3EYEDriver/sdl/CMakeLists.txt')
-rw-r--r-- | video-ps3eye/PS3EYEDriver/sdl/CMakeLists.txt | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/video-ps3eye/PS3EYEDriver/sdl/CMakeLists.txt b/video-ps3eye/PS3EYEDriver/sdl/CMakeLists.txt deleted file mode 100644 index 5064b2d8..00000000 --- a/video-ps3eye/PS3EYEDriver/sdl/CMakeLists.txt +++ /dev/null @@ -1,24 +0,0 @@ -set(cmake-modules "${CMAKE_CURRENT_LIST_DIR}/cmake/") -if(MSVC) - set(CMAKE_MODULE_PATH "${cmake-modules}" ${CMAKE_MODULE_PATH}) -else() - list(APPEND CMAKE_MODULE_PATH "${cmake-modules}") -endif() - -find_package(SDL2 QUIET) -if(SDL2_FOUND) - include_directories(${SDL2_INCLUDE_DIRS}) - link_libraries(${SDL2_LIBRARIES}) - link_libraries(opentrack-ps3eye) - otr_module(ps3eye-test EXECUTABLE NO-QT WIN32-CONSOLE) - if(WIN32) - foreach(k ${SDL2_LIBRARIES}) - get_filename_component(path "${k}" PATH) - set(lib "${path}/SDL2.dll") - if(EXISTS "${lib}") - otr_install_lib("${lib}" "${opentrack-hier-pfx}") - break() - endif() - endforeach() - endif() -endif() |