File tree 4 files changed +12
-12
lines changed
4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ add_subdirectory(updater)
31
31
32
32
if (NOT BUILD_LIBAPPIMAGEUPDATE_ONLY)
33
33
add_subdirectory (cli)
34
+ add_subdirectory (validate)
34
35
endif ()
35
36
36
37
# include Qt UI
Original file line number Diff line number Diff line change @@ -11,14 +11,3 @@ target_link_libraries(signing
11
11
target_include_directories (signing
12
12
PUBLIC $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR} >/src
13
13
)
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 5
5
#include < argagg/argagg.hpp>
6
6
7
7
// local headers
8
- #include " signaturevalidator.h"
8
+ #include " signing/ signaturevalidator.h"
9
9
#include " util/updatableappimage.h"
10
10
#include " util/util.h"
11
11
You can’t perform that action at this time.
0 commit comments