forked from 7thSamurai/steganography
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
executable file
·47 lines (41 loc) · 763 Bytes
/
Copy pathCMakeLists.txt
File metadata and controls
executable file
·47 lines (41 loc) · 763 Bytes
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
42
43
44
45
46
47
cmake_minimum_required(VERSION 3.16)
project(steganography)
include_directories(ext)
add_library(
stb STATIC
ext/stb/stb_image.c
ext/stb/stb_image_write.c
)
add_library(
zlib STATIC
ext/zlib/adler32.c
ext/zlib/compress.c
ext/zlib/crc32.c
ext/zlib/crc32.h
ext/zlib/deflate.c
ext/zlib/gzclose.c
ext/zlib/gzlib.c
ext/zlib/gzread.c
ext/zlib/gzwrite.c
ext/zlib/infback.c
ext/zlib/inffast.c
ext/zlib/inflate.c
ext/zlib/inftrees.c
ext/zlib/trees.c
ext/zlib/uncompr.c
ext/zlib/zutil.c)
SET(CMAKE_CXX_STANDARD 17)
SET(CMAKE_CXX_STANDARD_REQUIRED On)
add_executable(
steganography
src/aes.cpp
src/crc32.cpp
src/image.cpp
src/main.cpp
src/sha256.cpp
)
target_link_libraries(
steganography
stb
zlib
)