mirror of
https://github.com/mrfluffy-dev/fsorter.git
synced 2026-01-17 02:50:33 +00:00
9 lines
187 B
CMake
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)
|