initial commit
This commit is contained in:
19
CMakeLists.txt
Normal file
19
CMakeLists.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
cmake_minimum_required (VERSION 3.2.2)
|
||||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
|
||||
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_BUILD_TYPE Release)
|
||||
|
||||
project("commons" CXX)
|
||||
|
||||
add_definitions("-std=c++2a -g")
|
||||
|
||||
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
|
||||
conan_basic_setup()
|
||||
|
||||
add_executable(${PROJECT_NAME} src/main.cpp)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME} ${CONAN_LIBS})
|
||||
|
||||
#enable_testing()
|
||||
#add_subdirectory(tests)
|
||||
Reference in New Issue
Block a user