We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e75c563 + ba132eb commit 427ce33Copy full SHA for 427ce33
demos/CMakeLists.txt
@@ -10,7 +10,7 @@ option(BUILD_USABLE_DEMOS "Build usable demos (ltcrypt sizes constants)" FALSE)
10
11
if(BUILD_USEFUL_DEMOS)
12
13
- list(APPEND ALL_DEMOS_TARGETS hashsum)
+ list(APPEND ALL_DEMOS_TARGETS hashsum tv_gen)
14
15
# hashsum
16
add_executable(hashsum
@@ -21,6 +21,15 @@ if(BUILD_USEFUL_DEMOS)
21
${PROJECT_NAME}
22
)
23
24
+ # tv_gen
25
+ add_executable(tv_gen
26
+ ${CMAKE_CURRENT_SOURCE_DIR}/tv_gen.c
27
+ )
28
+
29
+ target_link_libraries(tv_gen PRIVATE
30
+ ${PROJECT_NAME}
31
32
33
endif()
34
35
#-----------------------------------------------------------------------------
0 commit comments