-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added zedmd-client, less strict handshake
- Loading branch information
1 parent
d9ef6f7
commit 741aaef
Showing
14 changed files
with
1,169 additions
and
43 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,38 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index b6f828f..6be0845 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -18,7 +18,7 @@ | ||
set(CMAKE_C_STANDARD 11) | ||
|
||
# setup target and directory names | ||
-set(LIBRARY_TARGET "cargs") | ||
+set(LIBRARY_TARGET "cargs64") | ||
set(INCLUDE_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/include") | ||
set(SOURCE_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/src") | ||
|
||
@@ -51,12 +51,12 @@ | ||
$<BUILD_INTERFACE:${INCLUDE_DIRECTORY}> | ||
$<INSTALL_INTERFACE:include> | ||
) | ||
-set_target_properties(cargs PROPERTIES PUBLIC_HEADER "${INCLUDE_DIRECTORY}/cargs.h") | ||
-set_target_properties(cargs PROPERTIES DEFINE_SYMBOL CAG_EXPORTS) | ||
+set_target_properties(cargs64 PROPERTIES PUBLIC_HEADER "${INCLUDE_DIRECTORY}/cargs.h") | ||
+set_target_properties(cargs64 PROPERTIES DEFINE_SYMBOL CAG_EXPORTS) | ||
|
||
# add shared library macro | ||
if(BUILD_SHARED_LIBS) | ||
- target_compile_definitions(cargs PUBLIC CAG_SHARED) | ||
+ target_compile_definitions(cargs64 PUBLIC CAG_SHARED) | ||
endif() | ||
|
||
# add tests | ||
@@ -104,7 +104,7 @@ | ||
COMPATIBILITY SameMajorVersion) | ||
|
||
# installing | ||
-install(TARGETS cargs | ||
+install(TARGETS cargs64 | ||
EXPORT CargsTargets) | ||
|
||
install(FILES |
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
Oops, something went wrong.