commit e8edf944ea6ce68955e306c790fd751ca90e873c Author: PreacherDHM Date: Mon Sep 22 20:25:25 2025 -0700 first diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..7fa94f8 --- /dev/null +++ b/CMakeLists.txt @@ -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) diff --git a/README.md b/README.md new file mode 100644 index 0000000..51a3415 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Wolrd Designed +This is a self hosted world designer that is for tineast of detailes in diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt new file mode 100644 index 0000000..f517f42 --- /dev/null +++ b/external/CMakeLists.txt @@ -0,0 +1,3 @@ +# ADD Externals HERE +# add_subdirectory(external) + diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt new file mode 100644 index 0000000..154790d --- /dev/null +++ b/source/CMakeLists.txt @@ -0,0 +1,6 @@ +# ADD SOURCES HERE +set(SOURCE_FILES + main.cpp +) + +add_executable(${PROJECT_NAME} ${SOURCE_FILES}) diff --git a/source/main.cpp b/source/main.cpp new file mode 100644 index 0000000..3a57edd --- /dev/null +++ b/source/main.cpp @@ -0,0 +1,13 @@ +/* ############################################################################# + * # PROJECT_NAME + * DESCRIPTION + * + * AUTHER: NAME + * DATE: MM/DD/YY + * ############################################################################# + */ + +int main (int argc, char *argv[]) { + + return 0; +}