This commit is contained in:
Isuru Samarathunga
2025-10-03 17:09:14 +05:30
commit be7a1df305
25 changed files with 489 additions and 0 deletions

7
Runtime/CMakeLists.txt Normal file
View File

@ -0,0 +1,7 @@
if(WIN32)
add_subdirectory(Windows/)
elseif(ANDROID)
add_subdirectory(Android/)
else()
message(FATAL_ERROR "Attempted building for unknown platform.")
endif()