Skip to content

Commit 3b8f6e4

Browse files
committed
[refactor] changed cmakefile for very troll flip of names
1 parent 26709bb commit 3b8f6e4

File tree

5 files changed

+6
-10
lines changed

5 files changed

+6
-10
lines changed

CMakeLists.txt

+6-10
Original file line numberDiff line numberDiff line change
@@ -29,27 +29,23 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static-libstdc++")
2929
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/../bin)
3030

3131
# Make the FHE demo programs and put them to BIN
32+
# JPEG Compression Demos
3233
add_executable(client_jpeg homo/client_jpeg.cpp ${LIBRARY_SOURCES})
3334
add_executable(server_jpeg homo/server_jpeg.cpp ${LIBRARY_SOURCES})
3435
target_link_libraries(client_jpeg seal)
3536
target_link_libraries(server_jpeg seal)
3637

37-
# Picture resizing demos
38+
# Picture Resizing Demos
3839
add_executable(client_resize homo/client_resize.cpp ${LIBRARY_SOURCES})
3940
add_executable(server_resize homo/server_resize.cpp ${LIBRARY_SOURCES})
4041
target_link_libraries(client_resize seal ${OpenCV_LIBS})
4142
target_link_libraries(server_resize seal ${OpenCV_LIBS})
4243

4344
# 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})
5349

5450

5551
# Image testing, debugging only

homo/dct.cpp tests/dct.cpp

File renamed without changes.

homo/encode.cpp tests/encode.cpp

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)