summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Magic2/CMakeLists.txt1
-rw-r--r--NetEx/CMakeLists.txt4
-rw-r--r--nGenEx/CMakeLists.txt6
3 files changed, 10 insertions, 1 deletions
diff --git a/Magic2/CMakeLists.txt b/Magic2/CMakeLists.txt
index e264eb0..298ccb3 100644
--- a/Magic2/CMakeLists.txt
+++ b/Magic2/CMakeLists.txt
@@ -37,6 +37,7 @@ target_include_directories(
)
target_link_libraries(
Magic2
+ PUBLIC FoundationEx
PUBLIC nGenEx
# TODO: PUBLIC? DirectX9
)
diff --git a/NetEx/CMakeLists.txt b/NetEx/CMakeLists.txt
index 8cf742e..553ab30 100644
--- a/NetEx/CMakeLists.txt
+++ b/NetEx/CMakeLists.txt
@@ -21,3 +21,7 @@ target_include_directories(
NetEx
PUBLIC .
)
+target_link_libraries(
+ NetEx
+ PUBLIC FoundationEx
+ )
diff --git a/nGenEx/CMakeLists.txt b/nGenEx/CMakeLists.txt
index 6d18fe2..8fe1c1c 100644
--- a/nGenEx/CMakeLists.txt
+++ b/nGenEx/CMakeLists.txt
@@ -80,4 +80,8 @@ target_include_directories(
nGenEx
PUBLIC .
)
-# TODO: target_link_libraries(nGenEx PUBLIC DirectX9)
+target_link_libraries(
+ nGenEx
+ PUBLIC FoundationEx
+ # TODO: PUBLIC DirectX9
+ )