cpp_prac/vector/CMakeLists.txt

8 lines
157 B
Text
Raw Permalink Normal View History

2025-01-10 08:15:31 +01:00
cmake_minimum_required(VERSION 3.16)
project(vec)
add_executable(main main.cc vec.cc)
# Link the common library
target_link_libraries(main PRIVATE common)