summaryrefslogtreecommitdiff
path: root/externals/qhexedit
diff options
context:
space:
mode:
authorGravatar bunnei2014-09-01 22:29:23 -0400
committerGravatar bunnei2014-09-01 22:29:23 -0400
commitc0e48432cd262baa6ed84b33cd9dd0d8f585e345 (patch)
tree0ed8ccb8b5c42ee27c0c44969771bbd77af8ebf8 /externals/qhexedit
parentMerge pull request #84 from bunnei/fix-hw-synchronization (diff)
parentRemove hand-crafted Visual Studio solution. (diff)
downloadyuzu-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.txt15
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
10set(HEADERS 11set(HEADERS
12 commands.h
11 qhexedit.h 13 qhexedit.h
12 qhexedit_p.h) 14 qhexedit_p.h
15 xbytearray.h
16 )
13 17
14add_library(qhexedit STATIC ${SRCS} ${HEADERS}) 18create_directory_groups(${SRCS} ${HEADERS})
15if(USE_QT5)
16 target_link_libraries(qhexedit Qt5::Core Qt5::Widgets)
17endif()
18 19
20add_library(qhexedit STATIC ${SRCS} ${HEADERS})
21target_link_libraries(qhexedit ${CITRA_QT_LIBS})