summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Stars45/CMakeLists.txt12
-rw-r--r--nGenEx/CMakeLists.txt8
2 files changed, 14 insertions, 6 deletions
diff --git a/Stars45/CMakeLists.txt b/Stars45/CMakeLists.txt
index 02af82d..73d3003 100644
--- a/Stars45/CMakeLists.txt
+++ b/Stars45/CMakeLists.txt
@@ -204,11 +204,13 @@ target_include_directories(
target_link_libraries(
Stars45
PUBLIC FoundationEx
+ PUBLIC Parser
PUBLIC NetEx
PUBLIC nGenEx
- # TODO: PUBLIC libpng
- # TODO: PUBLIC vorbis
- # TODO: PUBLIC Opcode
- # TODO: PUBLIC DirectX9
- # TODO: PUBLIC zlib
+ PUBLIC Zlib::zlib
+ PUBLIC Vorbis::vorbis
+ PUBLIC Vorbis::vorbisfile
+ PUBLIC Ogg::ogg
+ PUBLIC Png::png
+ # TODO: PUBLIC Opcode::opcode
)
diff --git a/nGenEx/CMakeLists.txt b/nGenEx/CMakeLists.txt
index 5435a54..fe54396 100644
--- a/nGenEx/CMakeLists.txt
+++ b/nGenEx/CMakeLists.txt
@@ -84,5 +84,11 @@ target_include_directories(
target_link_libraries(
nGenEx
PUBLIC FoundationEx
- # TODO: PUBLIC DirectX9
+ PUBLIC Parser
+ PUBLIC Zlib::zlib
+ PUBLIC Vorbis::vorbis
+ PUBLIC Vorbis::vorbisfile
+ PUBLIC Ogg::ogg
+ PUBLIC Png::png
+ # TODO: PUBLIC Opcode::opcode
)