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
|
2018-10-19 15:41:56 -04:00
|
|
|
Add.cpp
|
|
|
|
Add.h
|
|
|
|
Clip.cpp
|
|
|
|
Clip.h
|
|
|
|
Command.cpp
|
|
|
|
Command.h
|
|
|
|
Diceware.cpp
|
|
|
|
Diceware.h
|
|
|
|
Edit.cpp
|
|
|
|
Edit.h
|
|
|
|
Estimate.cpp
|
|
|
|
Estimate.h
|
|
|
|
Extract.cpp
|
|
|
|
Extract.h
|
|
|
|
Generate.cpp
|
|
|
|
Generate.h
|
|
|
|
List.cpp
|
|
|
|
List.h
|
|
|
|
Locate.cpp
|
|
|
|
Locate.h
|
|
|
|
Merge.cpp
|
|
|
|
Merge.h
|
|
|
|
Remove.cpp
|
|
|
|
Remove.h
|
|
|
|
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
|
2018-10-19 15:41:56 -04:00
|
|
|
cli
|
|
|
|
keepassx_core
|
|
|
|
Qt5::Core
|
|
|
|
${GCRYPT_LIBRARIES}
|
|
|
|
${ARGON2_LIBRARIES}
|
|
|
|
${GPGERROR_LIBRARIES}
|
|
|
|
${ZLIB_LIBRARIES}
|
|
|
|
${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)
|
2017-09-23 07:14:15 -04:00
|
|
|
install(FILES keepassxc-cli.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1/)
|
2017-08-21 21:33:49 -04:00
|
|
|
execute_process(COMMAND mandb -q)
|
|
|
|
endif()
|