diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2015-11-01 08:19:00 +0100 | 
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-11-01 08:49:12 +0100 | 
| commit | f14becff3653fa71911303fb0898a5d5a9cdfe95 (patch) | |
| tree | a4fb1db70720f4fdf3a3ef7d515683c7e8bfc083 /qxt-mini | |
| parent | 882dae825773963ef44bfee61ca990fddbb94d02 (diff) | |
qxt-mini: make own module
Diffstat (limited to 'qxt-mini')
| -rw-r--r-- | qxt-mini/CMakeLists.txt | 12 | ||||
| -rw-r--r-- | qxt-mini/qxtglobalshortcut.cpp | 1 | ||||
| -rw-r--r-- | qxt-mini/qxtglobalshortcut_mac.cpp | 1 | ||||
| -rw-r--r-- | qxt-mini/qxtglobalshortcut_x11.cpp | 1 | 
4 files changed, 12 insertions, 3 deletions
| diff --git a/qxt-mini/CMakeLists.txt b/qxt-mini/CMakeLists.txt new file mode 100644 index 00000000..2fe5993b --- /dev/null +++ b/qxt-mini/CMakeLists.txt @@ -0,0 +1,12 @@ +if(UNIX OR APPLE) +    opentrack_boilerplate(opentrack-qxt-mini +        NO-LINKER-SCRIPT NO-COMPAT +        COMPILE "-DQXT_BUILD -DBUILD_QXT_GUI" +    ) +    if(NOT APPLE) +        target_link_libraries(opentrack-qxt-mini X11) +    else() +        set_target_properties(opentrack-qxt-mini PROPERTIES LINK_FLAGS +            "-framework Carbon -framework CoreFoundation") +    endif() +endif() diff --git a/qxt-mini/qxtglobalshortcut.cpp b/qxt-mini/qxtglobalshortcut.cpp index 4b400a72..45576d37 100644 --- a/qxt-mini/qxtglobalshortcut.cpp +++ b/qxt-mini/qxtglobalshortcut.cpp @@ -1,4 +1,3 @@ -#define QXT_BUILD  #include "qxtglobalshortcut.h"  /****************************************************************************  ** Copyright (c) 2006 - 2011, the LibQxt project. diff --git a/qxt-mini/qxtglobalshortcut_mac.cpp b/qxt-mini/qxtglobalshortcut_mac.cpp index 34de694e..b19de377 100644 --- a/qxt-mini/qxtglobalshortcut_mac.cpp +++ b/qxt-mini/qxtglobalshortcut_mac.cpp @@ -1,5 +1,4 @@  #ifdef __APPLE__ -#define QXT_BUILD  #include <Carbon/Carbon.h>  /****************************************************************************  ** Copyright (c) 2006 - 2011, the LibQxt project. diff --git a/qxt-mini/qxtglobalshortcut_x11.cpp b/qxt-mini/qxtglobalshortcut_x11.cpp index 30b71ff1..12279ac8 100644 --- a/qxt-mini/qxtglobalshortcut_x11.cpp +++ b/qxt-mini/qxtglobalshortcut_x11.cpp @@ -1,5 +1,4 @@  #ifndef __APPLE__ -#define QXT_BUILD  #include "qxtglobalshortcut_p.h"  /****************************************************************************  ** Copyright (c) 2006 - 2011, the LibQxt project. | 
