File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed
Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ add_subdirectory(updater)
3131
3232if (NOT BUILD_LIBAPPIMAGEUPDATE_ONLY)
3333 add_subdirectory (cli)
34+ add_subdirectory (validate)
3435endif ()
3536
3637# include Qt UI
Original file line number Diff line number Diff line change @@ -11,14 +11,3 @@ target_link_libraries(signing
1111target_include_directories (signing
1212 PUBLIC $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR} >/src
1313)
14-
15- # "demonstration" application
16- # used to be located within AppImageKit, but there is no sense in maintaining two implementations
17- add_executable (validate validate_main.cpp)
18- target_link_libraries (validate signing ${CMAKE_THREAD_LIBS_INIT} )
19-
20- # install target
21- install (
22- TARGETS validate
23- RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT validate
24- )
Original file line number Diff line number Diff line change 1+ # "demonstration" application for signing library
2+ # there used to be an implementation in AppImageKit, but there is no sense in maintaining two variants
3+ add_executable (validate validate_main.cpp)
4+ target_link_libraries (validate signing ${CMAKE_THREAD_LIBS_INIT} )
5+
6+ # install target
7+ install (
8+ TARGETS validate
9+ RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT validate
10+ )
Original file line number Diff line number Diff line change 55#include < argagg/argagg.hpp>
66
77// local headers
8- #include " signaturevalidator.h"
8+ #include " signing/ signaturevalidator.h"
99#include " util/updatableappimage.h"
1010#include " util/util.h"
1111
You can’t perform that action at this time.
0 commit comments