15 lines
369 B
CMake
Executable File
15 lines
369 B
CMake
Executable File
# Set the minimum required version of CMake
|
|
cmake_minimum_required(VERSION 3.19)
|
|
|
|
# Aktiviert die Generierung der compile_commands.json
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
|
|
# Set the project name
|
|
project(HM2_Praktika)
|
|
|
|
# Add the subdirectories for each praktikum
|
|
add_subdirectory(P1)
|
|
add_subdirectory(P2)
|
|
add_subdirectory(P3)
|
|
add_subdirectory(P4)
|
|
add_subdirectory(P5) |