9 lines
317 B
CMake
9 lines
317 B
CMake
cmake_minimum_required(VERSION 3.16.0 FATAL_ERROR)
|
|
project(Assignment3)
|
|
add_executable(${PROJECT_NAME} "assignment3.cpp"
|
|
Application3.cpp
|
|
Application3.h
|
|
application_integrator.h
|
|
application_integrator.cpp
|
|
helper.hpp)
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC CGI-framework)
|