aboutsummaryrefslogtreecommitdiff
path: root/Compiler
diff options
context:
space:
mode:
Diffstat (limited to 'Compiler')
-rw-r--r--Compiler/CMakeLists.txt33
-rw-r--r--Compiler/src/main.cpp10
2 files changed, 43 insertions, 0 deletions
diff --git a/Compiler/CMakeLists.txt b/Compiler/CMakeLists.txt
new file mode 100644
index 0000000..321945c
--- /dev/null
+++ b/Compiler/CMakeLists.txt
@@ -0,0 +1,33 @@
+## Metadata
+cmake_minimum_required(VERSION 3.10.2)
+
+set(THIS mdhtml) # Name of project
+project(${THIS} CXX)
+
+set(CMAKE_CXX_COMPILER clang++) # compiler
+
+set(CMAKE_CXX_STANDARD 11) # code standard
+SET(CMAKE_POSITION_INDEPENDENT_CODE ON)
+
+## Variables for files
+file(GLOB_RECURSE HEADERS "includes/*.hpp")
+file(GLOB_RECURSE SRC "src/*.cpp")
+
+## Debug and release flags
+set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Werror")
+set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wall -Werror -O0")
+
+## Executable recipes
+add_executable(${THIS} ${SRC} ${HEADERS})
+
+## SDL2 INCLUDE
+# find_package(SDL2 REQUIRED)
+# find_package(SDL2_image REQUIRED)
+# include_directories(${SDL2_INCLUDE_DIRS} ${SDL2_IMAGE_INCLUDE_DIRS})
+# target_link_libraries(${THIS} ${SDL2_LIBRARIES} ${SDL2_IMAGE_LIBRARIES})
+## SFML INCLUDE
+# find_package(SFML 2.5 COMPONENTS graphics REQUIRED)
+# target_link_libraries(${THIS} sfml-graphics)
+## FMT INCLUDE
+# find_package(fmt)
+# target_link_libraries(${THIS} fmt::fmt)
diff --git a/Compiler/src/main.cpp b/Compiler/src/main.cpp
new file mode 100644
index 0000000..ac686c3
--- /dev/null
+++ b/Compiler/src/main.cpp
@@ -0,0 +1,10 @@
+#include <iostream>
+
+using std::cout;
+using std::endl;
+
+int main()
+{
+ cout << "Hello, world!" << endl;
+ return 0;
+}