Files
HM2/P4/CMakeLists.txt
2026-01-04 15:35:46 +01:00

12 lines
354 B
CMake
Executable File

# Set the minimum required version of CMake
cmake_minimum_required(VERSION 3.19)
# Set the project name and specify the C++ as the project language
project(HM_P4)
# Specify the C++ standard
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# Add an executable with the above sources
add_executable(HM_P4 main.cpp CKomplex.cpp Fourier.cpp)