diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2014-09-22 19:02:05 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2014-09-22 19:02:05 +0200 |
commit | 3fe35807466580d910a5bd33a7ae0bc8f439ee19 (patch) | |
tree | 5c10cf10c1be2d2a1e57bb13330b97cc1fd890d9 /CMakeLists.txt | |
parent | 434d4e3e6e7e2835c86c00dae6ea1cc43efac96e (diff) |
cmake: cleanup/comment -D's
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d6c28682..79bb2b1b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -48,13 +48,14 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) set(CMAKE_POSITION_INDEPENDENT_CODE ON) -add_definitions(-DOPENTRACK_API -DIN_OPENTRACK) +# note, hatire supports both ftnoir and opentrack +# don't remove without being sure as hell -sh 20140922 +add_definitions(-DOPENTRACK_API) if(CMAKE_COMPILER_IS_GNUCXX OR APPLE) set(CMAKE_CXX_FLAGS " -std=c++11 ${CMAKE_CXX_FLAGS} ") endif() - if(UNIX) set(SDK_ENABLE_LIBEVDEV FALSE CACHE BOOL "libevdev virtual joystick protocol support (probably Linux only)") endif() |