diff options
author | bunnei <bunneidev@gmail.com> | 2014-09-01 22:29:23 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-09-01 22:29:23 -0400 |
commit | c0e48432cd262baa6ed84b33cd9dd0d8f585e345 (patch) | |
tree | 0ed8ccb8b5c42ee27c0c44969771bbd77af8ebf8 /externals/qhexedit | |
parent | 76372feb1959c0f53d02c2278ef4a14b794a808d (diff) | |
parent | c57de3e4046c662c5179d3b55340361a046a57ff (diff) |
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 commands.cpp qhexedit.cpp qhexedit_p.cpp - xbytearray.cpp) + xbytearray.cpp + ) set(HEADERS + commands.h qhexedit.h - qhexedit_p.h) + qhexedit_p.h + xbytearray.h + ) -add_library(qhexedit STATIC ${SRCS} ${HEADERS}) -if(USE_QT5) - target_link_libraries(qhexedit Qt5::Core Qt5::Widgets) -endif() +create_directory_groups(${SRCS} ${HEADERS}) +add_library(qhexedit STATIC ${SRCS} ${HEADERS}) +target_link_libraries(qhexedit ${CITRA_QT_LIBS}) |