CppExperiments/BitPattern/CMakeLists.txt

8 lines
212 B
CMake
Raw Normal View History

2021-10-21 13:00:01 +00:00
cmake_minimum_required(VERSION 2.6)
project(bitpattern)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17")
add_executable(bitpattern main.cpp bitpattern.h)
install(TARGETS bitpattern RUNTIME DESTINATION bin)