2017-01-30 19:18:35 -05:00
|
|
|
# Copyright (C) 2017 KeePassXC Team
|
2011-07-06 14:23:29 -04:00
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
|
2017-01-30 19:18:35 -05:00
|
|
|
set(cli_SOURCES
|
2017-09-06 09:14:41 -04:00
|
|
|
Add.cpp
|
|
|
|
Add.h
|
2017-05-19 14:04:11 -04:00
|
|
|
Clip.cpp
|
|
|
|
Clip.h
|
2017-07-17 15:16:53 -04:00
|
|
|
Command.cpp
|
|
|
|
Command.h
|
2017-09-06 09:14:41 -04:00
|
|
|
Edit.cpp
|
|
|
|
Edit.h
|
2017-03-12 13:34:56 -04:00
|
|
|
EntropyMeter.cpp
|
|
|
|
EntropyMeter.h
|
|
|
|
Extract.cpp
|
|
|
|
Extract.h
|
2017-02-13 22:29:20 -05:00
|
|
|
List.cpp
|
|
|
|
List.h
|
2017-08-05 12:20:26 -04:00
|
|
|
Locate.cpp
|
|
|
|
Locate.h
|
2017-01-30 19:18:35 -05:00
|
|
|
Merge.cpp
|
|
|
|
Merge.h
|
2017-09-06 09:14:41 -04:00
|
|
|
Remove.cpp
|
|
|
|
Remove.h
|
2017-03-12 13:34:56 -04:00
|
|
|
Show.cpp
|
|
|
|
Show.h)
|
2011-07-06 14:23:29 -04:00
|
|
|
|
2017-01-30 19:18:35 -05:00
|
|
|
add_library(cli STATIC ${cli_SOURCES})
|
|
|
|
target_link_libraries(cli Qt5::Core Qt5::Widgets)
|
2016-11-23 21:59:24 -05:00
|
|
|
|
2017-01-30 19:18:35 -05:00
|
|
|
add_executable(keepassxc-cli keepassxc-cli.cpp)
|
|
|
|
target_link_libraries(keepassxc-cli
|
|
|
|
cli
|
2017-01-06 16:25:26 -05:00
|
|
|
keepassx_core
|
|
|
|
Qt5::Core
|
|
|
|
${GCRYPT_LIBRARIES}
|
2017-02-02 10:51:33 -05:00
|
|
|
${GPGERROR_LIBRARIES}
|
2017-02-02 17:59:06 -05:00
|
|
|
${ZLIB_LIBRARIES}
|
2017-06-28 09:18:24 -04:00
|
|
|
${ZXCVBN_LIBRARIES})
|
2017-02-02 18:29:31 -05:00
|
|
|
|
|
|
|
install(TARGETS keepassxc-cli
|
|
|
|
BUNDLE DESTINATION . COMPONENT Runtime
|
2017-02-04 14:52:43 -05:00
|
|
|
RUNTIME DESTINATION ${CLI_INSTALL_DIR} COMPONENT Runtime)
|
2017-08-21 21:33:49 -04:00
|
|
|
|
|
|
|
if(APPLE OR UNIX)
|
|
|
|
install(FILES keepassxc-cli.1 DESTINATION /usr/local/share/man/man1/)
|
|
|
|
execute_process(COMMAND mandb -q)
|
|
|
|
endif()
|