diff options
| author | 2014-08-18 14:35:44 +1000 | |
|---|---|---|
| committer | 2014-08-18 14:35:44 +1000 | |
| commit | b7ecc9543ad0ee9d5d083fe1ca7018f876b2ae10 (patch) | |
| tree | eb357a371e850a735efd1ea5f25de92b4e67d0e0 /externals | |
| parent | Merge pull request #52 from lioncash/memory (diff) | |
| download | yuzu-b7ecc9543ad0ee9d5d083fe1ca7018f876b2ae10.tar.gz yuzu-b7ecc9543ad0ee9d5d083fe1ca7018f876b2ae10.tar.xz yuzu-b7ecc9543ad0ee9d5d083fe1ca7018f876b2ae10.zip | |
CMake Cleanup
Diffstat (limited to 'externals')
| -rw-r--r-- | externals/qhexedit/CMakeLists.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/externals/qhexedit/CMakeLists.txt b/externals/qhexedit/CMakeLists.txt index cfe168ef3..29ed5d2ba 100644 --- a/externals/qhexedit/CMakeLists.txt +++ b/externals/qhexedit/CMakeLists.txt | |||
| @@ -1,13 +1,15 @@ | |||
| 1 | set(CMAKE_AUTOMOC ON) | ||
| 2 | |||
| 1 | set(SRCS | 3 | set(SRCS |
| 2 | commands.cpp | 4 | commands.cpp |
| 3 | qhexedit.cpp | 5 | qhexedit.cpp |
| 4 | qhexedit_p.cpp | 6 | qhexedit_p.cpp |
| 5 | xbytearray.cpp) | 7 | xbytearray.cpp) |
| 6 | 8 | ||
| 7 | qt4_wrap_cpp(MOC_SRCS | 9 | set(HEADERS |
| 8 | qhexedit.h | 10 | qhexedit.h |
| 9 | qhexedit_p.h) | 11 | qhexedit_p.h) |
| 10 | 12 | ||
| 11 | include_directories(${CMAKE_CURRENT_BINARY_DIR}) | 13 | include_directories(${CMAKE_CURRENT_BINARY_DIR}) |
| 12 | 14 | ||
| 13 | add_library(qhexedit STATIC ${SRCS} ${MOC_SRCS}) | 15 | add_library(qhexedit STATIC ${SRCS} ${HEADERS}) |