diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-08-17 21:28:45 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-08-17 21:34:53 +0200 |
commit | cb33be1c50b68d6022f344ddac923c7aac3a11d5 (patch) | |
tree | 1840e3f9829aa69f10f81804f655e97be3f2eca8 /api | |
parent | 41ba8aa5329c16a797140dc23650ef45f42753a3 (diff) |
move options framework into its own library
- adjust usages
- add support for QList signals and metatype
Diffstat (limited to 'api')
-rw-r--r-- | api/CMakeLists.txt | 2 | ||||
-rw-r--r-- | api/plugin-support.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/api/CMakeLists.txt b/api/CMakeLists.txt index 5151cbf7..0be2c242 100644 --- a/api/CMakeLists.txt +++ b/api/CMakeLists.txt @@ -1,3 +1,3 @@ opentrack_boilerplate(opentrack-api NO-COMPAT BIN) -target_link_libraries(opentrack-api opentrack-compat) +target_link_libraries(opentrack-api opentrack-options opentrack-compat) target_include_directories(opentrack-api PUBLIC ${CMAKE_BINARY_DIR}) diff --git a/api/plugin-support.hpp b/api/plugin-support.hpp index 072c8da7..8b20d211 100644 --- a/api/plugin-support.hpp +++ b/api/plugin-support.hpp @@ -8,7 +8,7 @@ #pragma once #include "plugin-api.hpp" -#include "compat/options.hpp" +#include "options/options.hpp" #include <QWidget> #include <QDebug> |