summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorThePixelCoder <thepixelmaster2354@gmail.com>2022-12-19 06:12:15 -0600
committerGitHub <noreply@github.com>2022-12-19 13:12:15 +0100
commit4275779f8a1ffbb03922bf149a6228be21f64579 (patch)
tree274313159ed3beec69922d64308da931a22003fe /CMakeLists.txt
parentb4e6a4dac9bf3f283a81f8aa3ce438abf3609c7a (diff)
Handle nn::gfx merge (#108)
* Fix build and document nn::gfx merge * Update submodules and some extra labelling in csv * Fix various issues * Make versioning more flexible
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index fd309144..31d6b045 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -30,6 +30,16 @@ target_compile_options(uking PRIVATE -Wno-unused-parameter -Wno-unused-private-f
target_compile_options(uking PRIVATE -Wno-invalid-offsetof)
target_compile_options(uking PRIVATE -Wextra-semi)
+set(NN_SDK_MAJOR 4)
+set(NN_SDK_MINOR 4)
+set(NN_SDK_PATCH 0)
+set(NN_SDK_TYPE "Release")
+
+# todo: figure out actual number, in between odyssey and splatoon
+set(NN_WARE_MAJOR 1)
+set(NN_WARE_MINOR 6)
+set(NN_WARE_PATCH 1)
+
add_subdirectory(lib/NintendoSDK)
target_link_libraries(uking PUBLIC NintendoSDK)