This commit is contained in:
2025-09-22 20:25:25 -07:00
commit e8edf944ea
5 changed files with 38 additions and 0 deletions

14
CMakeLists.txt Normal file
View File

@@ -0,0 +1,14 @@
cmake_minimum_required(VERSION 3.30.0)
# !!! SET PROJECT NAME !!! #
project(PROJECTNAME VERSION 0.1)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_COLOR_MAKEFILE ON)
set(CMAKE_COLOR_DIAGNOSTICS ON)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
add_subdirectory(source)
add_subdirectory(external)

2
README.md Normal file
View File

@@ -0,0 +1,2 @@
# Wolrd Designed
This is a self hosted world designer that is for tineast of detailes in

3
external/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,3 @@
# ADD Externals HERE
# add_subdirectory(external)

6
source/CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
# ADD SOURCES HERE
set(SOURCE_FILES
main.cpp
)
add_executable(${PROJECT_NAME} ${SOURCE_FILES})

13
source/main.cpp Normal file
View File

@@ -0,0 +1,13 @@
/* #############################################################################
* # PROJECT_NAME
* DESCRIPTION
*
* AUTHER: NAME
* DATE: MM/DD/YY
* #############################################################################
*/
int main (int argc, char *argv[]) {
return 0;
}