5 lines
183 B
CMake
5 lines
183 B
CMake
cmake_minimum_required(VERSION 3.16.0 FATAL_ERROR)
|
|
project(Assignment3)
|
|
|
|
add_executable(${PROJECT_NAME} "assignment3.cpp")
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC CGI-framework)
|