-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
35 lines (29 loc) · 934 Bytes
/
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
#
# Copyright (c) 2010-2021 by Gilles Caulier, <caulier dot gilles at gmail dot com>
#
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
project(digikam-pgf-database)
cmake_minimum_required(VERSION "3.3.2")
find_package(Qt5 5.6.0
NO_MODULE COMPONENTS
Core
Gui
)
include_directories(pgfutils/
pgfutils/libpgf/
)
add_executable(pgfdatabase
loadpgfblob.cpp
pgfutils/pgfutils.cpp
pgfutils/libpgf/Decoder.cpp
pgfutils/libpgf/Encoder.cpp
pgfutils/libpgf/PGFimage.cpp
pgfutils/libpgf/PGFstream.cpp
pgfutils/libpgf/Subband.cpp
pgfutils/libpgf/WaveletTransform.cpp
)
target_link_libraries(pgfdatabase
Qt5::Core
Qt5::Gui
)