11 lines
304 B
CMake
11 lines
304 B
CMake
cmake_minimum_required(VERSION 3.3)
|
|
project(C/C++)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14")
|
|
SET(CMAKE_BUILD_TYPE Debug)
|
|
|
|
# These are the corresponding output paths
|
|
set (EXECUTABLE_OUTPUT_PATH ${CMAKE_SOURCE_DIR}/bin)
|
|
set (LIBRARY_OUTPUT_PATH ${EXECUTABLE_OUTPUT_PATH})
|
|
|
|
add_subdirectory(src) |