diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..0076a13 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,4 @@ +cmake_minimum_required(VERSION 3.30) +project(hlgl) + +add_executable(hlgl src/main.cpp) \ No newline at end of file diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..ffc6dab --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,3 @@ +int main() { + return 0; +} \ No newline at end of file