Files
fsorter/CMakeLists.txt
Zastian Pretorius 37ceee139d added toml support
2021-10-24 20:42:23 +02:00

9 lines
187 B
CMake

cmake_minimum_required(VERSION 3.17)
project(fsorter)
set(CMAKE_CXX_STANDARD 20)
include(FetchContent)
add_executable(fsorter main.cpp)
install(TARGETS ${PROJECT_NAME} DESTINATION bin)