From e17e84e92d77c5f8fc40ec5bcbc0eb2e9f212dbf Mon Sep 17 00:00:00 2001 From: dx Date: Sat, 23 May 2020 19:35:43 +0100 Subject: +c++ project Decision: to increase productivity as well as make implementing new features a bit easier, I've decided to move to C++, which has a standard (and fast) implementation of a regex system. Furthermore, it has a ton of good features that make working with this system easier. --- Compiler/CMakeLists.txt | 33 +++++++++++++++++++++++++++++++++ Compiler/src/main.cpp | 10 ++++++++++ 2 files changed, 43 insertions(+) create mode 100644 Compiler/CMakeLists.txt create mode 100644 Compiler/src/main.cpp 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 + +using std::cout; +using std::endl; + +int main() +{ + cout << "Hello, world!" << endl; + return 0; +} -- cgit v1.2.3-13-gbd6f