diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-08-22 13:27:53 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-08-23 00:05:15 +0200 |
commit | 67a293879286999e0289853bc0d7a26e75f6b909 (patch) | |
tree | 2b15d4975f2f40275d42cb8da79d1c812693e26b | |
parent | 49a1772bf1f5b0635913d23a8f3583501074192d (diff) |
cmake: don't include current source dir
Only angle-bracket #include is affected.
-rw-r--r-- | cmake/opentrack-platform.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/opentrack-platform.cmake b/cmake/opentrack-platform.cmake index 19776323..ab11a780 100644 --- a/cmake/opentrack-platform.cmake +++ b/cmake/opentrack-platform.cmake @@ -31,7 +31,7 @@ set(CMAKE_AUTOMOC OFF) set(CMAKE_POSITION_INDEPENDENT_CODE ON) include_directories(${CMAKE_SOURCE_DIR}) -include_directories(${CMAKE_CURRENT_SOURCE_DIR}) +#include_directories(${CMAKE_CURRENT_SOURCE_DIR}) # note, hatire supports both ftnoir and opentrack # don't remove without being sure as hell -sh 20140922 |