diff options
author | Aki <please@ignore.pl> | 2021-09-30 10:48:15 +0200 |
---|---|---|
committer | Aki <please@ignore.pl> | 2021-09-30 10:48:15 +0200 |
commit | adb8f1fcf0172c4c4299703efea1d0744d03b5e7 (patch) | |
tree | f2424a6514df2ac53fcb86604ffb5075c75df62e /nGenEx/CMakeLists.txt | |
parent | 21b5090ea35426c2b322bf05cb1025e6e5cc5742 (diff) | |
download | starshatter-adb8f1fcf0172c4c4299703efea1d0744d03b5e7.zip starshatter-adb8f1fcf0172c4c4299703efea1d0744d03b5e7.tar.gz starshatter-adb8f1fcf0172c4c4299703efea1d0744d03b5e7.tar.bz2 |
Added Opcode to cmake tree
Diffstat (limited to 'nGenEx/CMakeLists.txt')
-rw-r--r-- | nGenEx/CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/nGenEx/CMakeLists.txt b/nGenEx/CMakeLists.txt index fe54396..a73d239 100644 --- a/nGenEx/CMakeLists.txt +++ b/nGenEx/CMakeLists.txt @@ -80,6 +80,11 @@ target_include_directories( nGenEx PUBLIC . PUBLIC $ENV{DXSDK_DIR}/Include + PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../Opcode/OpcodeLib # FIXME: Opcode is badly injured. + ) +target_precompile_headers( + nGenEx + PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../Opcode/OpcodeLib/StdAfx.h ) target_link_libraries( nGenEx @@ -90,5 +95,5 @@ target_link_libraries( PUBLIC Vorbis::vorbisfile PUBLIC Ogg::ogg PUBLIC Png::png - # TODO: PUBLIC Opcode::opcode + PUBLIC Opcode ) |