Add initial code

This commit is contained in:
illyum 2024-11-27 03:25:50 -07:00
parent 94b069fc8e
commit fea3c81ce2
2 changed files with 7 additions and 0 deletions

4
CMakeLists.txt Normal file
View File

@ -0,0 +1,4 @@
cmake_minimum_required(VERSION 3.30)
project(hlgl)
add_executable(hlgl src/main.cpp)

3
src/main.cpp Normal file
View File

@ -0,0 +1,3 @@
int main() {
return 0;
}