File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ find_package(OpenSSL 1.1 REQUIRED)
38
38
find_package (Protobuf REQUIRED)
39
39
find_package (gRPC CONFIG REQUIRED)
40
40
find_package (gflags REQUIRED)
41
+ find_package (ICU REQUIRED COMPONENTS uc data)
41
42
42
43
# mlspp
43
44
set (CMAKE_EXPORT_PACKAGE_REGISTRY ON )
@@ -50,7 +51,7 @@ find_package(nlohmann_json 3.2 REQUIRED)
50
51
### Protobuf generation
51
52
###
52
53
53
- # Get the proto file from the interop repo
54
+ # Get the proto file from the interop repo
54
55
include ( ExternalProject )
55
56
find_package ( Git REQUIRED )
56
57
set ( MLS_IMPLEMENTATIONS_REPO_URL https://github.com/mlswg/mls-implementations.git )
@@ -99,7 +100,7 @@ file(GLOB_RECURSE BIN_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp")
99
100
add_executable (${APP_NAME} ${BIN_SOURCES} ${PB_SRC} ${GRPC_SRC} )
100
101
add_dependencies (${APP_NAME} mls-interop-extern)
101
102
target_include_directories (${APP_NAME} PRIVATE ${CMAKE_CURRENT_BINARY_DIR} )
102
- target_link_libraries (${APP_NAME}
103
- gflags
104
- gRPC::grpc++ protobuf::libprotobuf
103
+ target_link_libraries (${APP_NAME}
104
+ gflags ICU::uc ICU::data
105
+ gRPC::grpc++ protobuf::libprotobuf
105
106
MLSPP::mlspp MLSPP::mls_vectors MLSPP::tls_syntax)
You can’t perform that action at this time.
0 commit comments