sys-prog-coursework-lab-4/CMakeLists.txt

12 lines
186 B
CMake
Raw Permalink Normal View History

2024-12-27 18:50:35 +02:00
cmake_minimum_required(VERSION 3.30)
project(code)
set(CMAKE_CXX_STANDARD 23)
add_executable(code main.cpp
sort.cpp
sort.h
)
2024-12-27 19:28:38 +02:00
target_link_libraries(code gtest pthread)