diff options
| author | 2014-09-01 22:29:23 -0400 | |
|---|---|---|
| committer | 2014-09-01 22:29:23 -0400 | |
| commit | c0e48432cd262baa6ed84b33cd9dd0d8f585e345 (patch) | |
| tree | 0ed8ccb8b5c42ee27c0c44969771bbd77af8ebf8 /externals/qhexedit | |
| parent | Merge pull request #84 from bunnei/fix-hw-synchronization (diff) | |
| parent | Remove hand-crafted Visual Studio solution. (diff) | |
| download | yuzu-c0e48432cd262baa6ed84b33cd9dd0d8f585e345.tar.gz yuzu-c0e48432cd262baa6ed84b33cd9dd0d8f585e345.tar.xz yuzu-c0e48432cd262baa6ed84b33cd9dd0d8f585e345.zip | |
Merge pull request #69 from yuriks/cmake-cleanup
CMake cleanup
Diffstat (limited to 'externals/qhexedit')
| -rw-r--r-- | externals/qhexedit/CMakeLists.txt | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/externals/qhexedit/CMakeLists.txt b/externals/qhexedit/CMakeLists.txt index b1f631f95..e7470dfe4 100644 --- a/externals/qhexedit/CMakeLists.txt +++ b/externals/qhexedit/CMakeLists.txt | |||
| @@ -5,14 +5,17 @@ set(SRCS | |||
| 5 | commands.cpp | 5 | commands.cpp |
| 6 | qhexedit.cpp | 6 | qhexedit.cpp |
| 7 | qhexedit_p.cpp | 7 | qhexedit_p.cpp |
| 8 | xbytearray.cpp) | 8 | xbytearray.cpp |
| 9 | ) | ||
| 9 | 10 | ||
| 10 | set(HEADERS | 11 | set(HEADERS |
| 12 | commands.h | ||
| 11 | qhexedit.h | 13 | qhexedit.h |
| 12 | qhexedit_p.h) | 14 | qhexedit_p.h |
| 15 | xbytearray.h | ||
| 16 | ) | ||
| 13 | 17 | ||
| 14 | add_library(qhexedit STATIC ${SRCS} ${HEADERS}) | 18 | create_directory_groups(${SRCS} ${HEADERS}) |
| 15 | if(USE_QT5) | ||
| 16 | target_link_libraries(qhexedit Qt5::Core Qt5::Widgets) | ||
| 17 | endif() | ||
| 18 | 19 | ||
| 20 | add_library(qhexedit STATIC ${SRCS} ${HEADERS}) | ||
| 21 | target_link_libraries(qhexedit ${CITRA_QT_LIBS}) | ||