@@ -29,27 +29,23 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static-libstdc++")
29
29
set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR} /../bin)
30
30
31
31
# Make the FHE demo programs and put them to BIN
32
+ # JPEG Compression Demos
32
33
add_executable (client_jpeg homo/client_jpeg.cpp ${LIBRARY_SOURCES} )
33
34
add_executable (server_jpeg homo/server_jpeg.cpp ${LIBRARY_SOURCES} )
34
35
target_link_libraries (client_jpeg seal)
35
36
target_link_libraries (server_jpeg seal)
36
37
37
- # Picture resizing demos
38
+ # Picture Resizing Demos
38
39
add_executable (client_resize homo/client_resize.cpp ${LIBRARY_SOURCES} )
39
40
add_executable (server_resize homo/server_resize.cpp ${LIBRARY_SOURCES} )
40
41
target_link_libraries (client_resize seal ${OpenCV_LIBS} )
41
42
target_link_libraries (server_resize seal ${OpenCV_LIBS} )
42
43
43
44
# JPEG Decompression Demos
44
- add_executable (decode_client homo/client_decode.cpp ${LIBRARY_SOURCES} )
45
- add_executable (decode_server homo/server_decode.cpp ${LIBRARY_SOURCES} )
46
- target_link_libraries (decode_client seal ${OpenCV_LIBS} )
47
- target_link_libraries (decode_server seal ${OpenCV_LIBS} )
48
-
49
-
50
- # Image testing, debugging only
51
- add_executable (image_test homo/image_test.cpp ${LIBRARY_SOURCES} )
52
- target_link_libraries (image_test seal ${OpenCV_LIBS} )
45
+ add_executable (client_decode homo/client_decode.cpp ${LIBRARY_SOURCES} )
46
+ add_executable (server_decode homo/server_decode.cpp ${LIBRARY_SOURCES} )
47
+ target_link_libraries (client_decode seal ${OpenCV_LIBS} )
48
+ target_link_libraries (server_decode seal ${OpenCV_LIBS} )
53
49
54
50
55
51
# Image testing, debugging only
0 commit comments