2011-07-06 14:23:29 -04:00
|
|
|
# Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 2 or (at your option)
|
|
|
|
# version 3 of the License.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
include_directories(../src)
|
|
|
|
|
2012-05-21 17:37:29 -04:00
|
|
|
add_executable(kdbx-extract kdbx-extract.cpp)
|
|
|
|
target_link_libraries(kdbx-extract
|
|
|
|
keepassx_core
|
2016-02-28 10:52:02 -05:00
|
|
|
${MHD_LIBRARIES}
|
2015-07-22 10:59:38 -04:00
|
|
|
Qt5::Core
|
2015-07-22 11:22:31 -04:00
|
|
|
Qt5::Concurrent
|
2015-07-22 10:59:38 -04:00
|
|
|
Qt5::Widgets
|
2012-05-21 17:37:29 -04:00
|
|
|
${GCRYPT_LIBRARIES}
|
|
|
|
${ZLIB_LIBRARIES})
|
2016-11-23 21:59:24 -05:00
|
|
|
|
2017-01-11 21:05:16 -05:00
|
|
|
add_executable(kdbx-merge kdbx-merge.cpp)
|
|
|
|
target_link_libraries(kdbx-merge
|
2017-01-06 16:25:26 -05:00
|
|
|
keepassx_core
|
|
|
|
Qt5::Core
|
|
|
|
${GCRYPT_LIBRARIES}
|
|
|
|
${ZLIB_LIBRARIES})
|
|
|
|
|
2016-11-23 21:59:24 -05:00
|
|
|
|
|
|
|
add_executable(entropy-meter entropy-meter.cpp)
|
|
|
|
target_link_libraries(entropy-meter zxcvbn)
|