forked from XRPLF/rippled
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request XRPLF#274 from hobu/master
Implement conditional cmake configuration for echo_server_tls and add cmake config for print_server and telemetry_client
- Loading branch information
Showing
6 changed files
with
42 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
file (GLOB SOURCE_FILES *.cpp) | ||
file (GLOB HEADER_FILES *.hpp) | ||
|
||
|
||
if (OPENSSL_FOUND) | ||
|
||
init_target (echo_server_tls) | ||
|
||
build_executable (${TARGET_NAME} ${SOURCE_FILES} ${HEADER_FILES}) | ||
|
||
link_boost () | ||
link_openssl() | ||
final_target () | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
file (GLOB SOURCE_FILES *.cpp) | ||
file (GLOB HEADER_FILES *.hpp) | ||
|
||
init_target (print_server) | ||
|
||
build_executable (${TARGET_NAME} ${SOURCE_FILES} ${HEADER_FILES}) | ||
|
||
link_boost () | ||
final_target () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
file (GLOB SOURCE_FILES *.cpp) | ||
file (GLOB HEADER_FILES *.hpp) | ||
|
||
init_target (telemetry_client) | ||
|
||
build_executable (${TARGET_NAME} ${SOURCE_FILES} ${HEADER_FILES}) | ||
|
||
link_boost () | ||
final_target () |