Initial project files

This commit is contained in:
2026-06-14 07:36:11 -07:00
commit 36b368820e
15 changed files with 562 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
set(target mainApp)
add_executable(${target}
main.cpp
)
target_compile_features(${target} PRIVATE cxx_std_23)
target_link_libraries(${target}
PRIVATE
project_core
)
+6
View File
@@ -0,0 +1,6 @@
#include <print>
int main(int argc, char **argv) {
std::println("Hello, GraphicsSandbox!");
return 0;
}