C_CPP/CMakeLists.txt

11 lines
304 B
CMake
Raw Normal View History

2018-06-02 10:50:37 +02:00
cmake_minimum_required(VERSION 3.3)
2018-08-19 18:30:13 +02:00
project(C/C++)
2018-06-02 10:50:37 +02:00
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14")
SET(CMAKE_BUILD_TYPE Debug)
2018-06-02 10:50:37 +02:00
2018-08-23 21:10:08 +02:00
# These are the corresponding output paths
set (EXECUTABLE_OUTPUT_PATH ${CMAKE_SOURCE_DIR}/bin)
set (LIBRARY_OUTPUT_PATH ${EXECUTABLE_OUTPUT_PATH})
2018-10-07 14:06:52 +02:00
add_subdirectory(src)