diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-30 09:14:39 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-30 09:14:39 +0100 |
commit | 05b2f05b72c706908e961eff8c0e4aa70dcadbd3 (patch) | |
tree | 003558f54a108d973bc312f38945b72bfa65da4c | |
parent | 853a266b7ff8795771e56af72dc288ce4dd0d34d (diff) |
fix paths harder
-rw-r--r-- | protocol-wine/CMakeLists.txt | 2 | ||||
-rw-r--r-- | protocol-wine/ftnoir_protocol_wine.h | 2 | ||||
-rw-r--r-- | protocol-wine/opentrack-wrapper-wine-main.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/protocol-wine/CMakeLists.txt b/protocol-wine/CMakeLists.txt index db5eddb5..bafcff8b 100644 --- a/protocol-wine/CMakeLists.txt +++ b/protocol-wine/CMakeLists.txt @@ -9,7 +9,7 @@ if(NOT WIN32) if(APPLE) set(my-rt) endif() - file(GLOB wine-deps ${CMAKE_SOURCE_DIR}/protocol-wine/*.cxx) + file(GLOB wine-deps ${PROJECT_SOURCE_DIR}/*.cxx) add_custom_command( OUTPUT opentrack-wrapper-wine.exe.so DEPENDS ${wine-deps} diff --git a/protocol-wine/ftnoir_protocol_wine.h b/protocol-wine/ftnoir_protocol_wine.h index f1c556d9..f78e1364 100644 --- a/protocol-wine/ftnoir_protocol_wine.h +++ b/protocol-wine/ftnoir_protocol_wine.h @@ -10,7 +10,7 @@ #include <QFile> #include "opentrack/plugin-api.hpp" #include "opentrack-compat/shm.h" -#include "protocol-wine/wine-shm.h" +#include "wine-shm.h" class FTNoIR_Protocol : public IProtocol { diff --git a/protocol-wine/opentrack-wrapper-wine-main.cxx b/protocol-wine/opentrack-wrapper-wine-main.cxx index 875fc6ef..082e5dde 100644 --- a/protocol-wine/opentrack-wrapper-wine-main.cxx +++ b/protocol-wine/opentrack-wrapper-wine-main.cxx @@ -5,7 +5,7 @@ #endif #include <cstdio> #include "freetrackclient/fttypes.h" -#include "protocol-wine/wine-shm.h" +#include "wine-shm.h" #include "opentrack-compat/export.hpp" enum Axis { |