diff options
| author | bunnei <bunneidev@gmail.com> | 2014-08-19 19:08:01 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2014-08-19 19:08:01 -0400 |
| commit | bc64261d2902cf5e9342c9013d2fe028c3ffd440 (patch) | |
| tree | f92bd53642e09d2cfbd361b4b6a260539c7d620a /externals/qhexedit/CMakeLists.txt | |
| parent | 0db986d92aa06774cf954964cfe5834eac9e09f1 (diff) | |
| parent | 90f23020f53c94dab800f7348877aae483974512 (diff) | |
Merge pull request #60 from xsacha/qt5
Use Qt5 by default for citra-qt project.
Diffstat (limited to 'externals/qhexedit/CMakeLists.txt')
| -rw-r--r-- | externals/qhexedit/CMakeLists.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/externals/qhexedit/CMakeLists.txt b/externals/qhexedit/CMakeLists.txt index 29ed5d2ba..b1f631f95 100644 --- a/externals/qhexedit/CMakeLists.txt +++ b/externals/qhexedit/CMakeLists.txt @@ -1,4 +1,5 @@ set(CMAKE_AUTOMOC ON) +set(CMAKE_INCLUDE_CURRENT_DIR ON) set(SRCS commands.cpp @@ -10,6 +11,8 @@ set(HEADERS qhexedit.h qhexedit_p.h) -include_directories(${CMAKE_CURRENT_BINARY_DIR}) - add_library(qhexedit STATIC ${SRCS} ${HEADERS}) +if(USE_QT5) + target_link_libraries(qhexedit Qt5::Core Qt5::Widgets) +endif() + |
