blob: 751257f64ff4ea50e224f49ba6ce70b52ae31a6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
PROJECT(shared)
# source files for shared
SET(shared_srcs
cenc.cpp
crypt.cpp
file.cpp
firmware.cpp
pe.cpp
updater.cpp
utils.cpp
)
ADD_LIBRARY(shared ${shared_srcs})
TARGET_LINK_LIBRARIES(shared pelib)
TARGET_LINK_LIBRARIES(shared zlib)
|