Updated build env

This commit is contained in:
2026-08-23 20:46:40 -07:00
parent 0cb0628101
commit c9fa1b8299
6 changed files with 40 additions and 9 deletions
+3
View File
@@ -0,0 +1,3 @@
add_executable(triangle main.cpp)
target_link_libraries(triangle PRIVATE ${PROJECT_NAME})
+9
View File
@@ -0,0 +1,9 @@
#include <sophia/application.hpp>
int main() {
sophia::Application app{{.width = 800, .height = 600, .name = "Triangle"}};
app.run();
return EXIT_SUCCESS;
}