-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
41 lines (38 loc) · 1.17 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
cmake_minimum_required(VERSION 3.28)
project(image_processor)
set(CMAKE_CXX_STANDARD 23)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static-libgcc -static-libstdc++")
add_executable(
image_processor
image_processor.cpp
bmp.cpp
bmp.h
image.cpp
image.h
filters/base.h
filters/crop.cpp
filters/crop.h
filters/grayscale.cpp
filters/grayscale.h
filters/negative.cpp
filters/negative.h
filters/matrix_filters/matrix.cpp
filters/matrix_filters/matrix.h
filters/matrix_filters/sharp.cpp
filters/matrix_filters/sharp.h
filters/matrix_filters/edge_detection.cpp
filters/matrix_filters/edge_detection.h
filters/nostalgic.cpp
filters/nostalgic.h
execution_control/shared_structures.h
execution_control/parser.cpp
execution_control/parser.h
execution_control/processor.cpp
execution_control/processor.h
execution_control/producer.cpp
execution_control/producer.h
exceptions.cpp
exceptions.h
)
target_include_directories(image_processor
PUBLIC ${PROJECT_SOURCE_DIR})