first
This commit is contained in:
14
CMakeLists.txt
Normal file
14
CMakeLists.txt
Normal 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
2
README.md
Normal 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
3
external/CMakeLists.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
# ADD Externals HERE
|
||||
# add_subdirectory(external)
|
||||
|
||||
6
source/CMakeLists.txt
Normal file
6
source/CMakeLists.txt
Normal 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
13
source/main.cpp
Normal file
@@ -0,0 +1,13 @@
|
||||
/* #############################################################################
|
||||
* # PROJECT_NAME
|
||||
* DESCRIPTION
|
||||
*
|
||||
* AUTHER: NAME
|
||||
* DATE: MM/DD/YY
|
||||
* #############################################################################
|
||||
*/
|
||||
|
||||
int main (int argc, char *argv[]) {
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user