-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new: support for Visual Studio 2019 fix: system time backward jump lead to application freeze (reimplemented named ipc mutex and event for linux based on pthread) change: client/sever tcp communication framed by header with length info change: Readme.md file new "Initial Test" section author: Rex Schilasky <[email protected]>
- Loading branch information
1 parent
04a1093
commit e07627e
Showing
29 changed files
with
1,152 additions
and
171 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,102 +1,58 @@ | ||
{ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "x64-Debug", | ||
"generator": "Visual Studio 15 2017 Win64", | ||
"generator": "Ninja", | ||
"configurationType": "Debug", | ||
"inheritEnvironments": [ "msvc_x64_x64" ], | ||
"buildRoot": "${projectDir}\\_vs_cmake\\build\\${name}", | ||
"installRoot": "${projectDir}\\_vs_cmake\\install\\${name}", | ||
"variables": [ | ||
{ | ||
"name": "HAS_QT5", | ||
"value": "ON" | ||
}, | ||
{ | ||
"name": "BUILD_DOCS", | ||
"value": "ON" | ||
}, | ||
{ | ||
"name": "BUILD_APPS", | ||
"value": "ON" | ||
}, | ||
{ | ||
"name": "BUILD_SAMPLES", | ||
"value": "ON" | ||
}, | ||
{ | ||
"name": "BUILD_TIME", | ||
"value": "ON" | ||
}, | ||
{ | ||
"name": "ECAL_LAYER_FASTRTPS", | ||
"value": "OFF" | ||
}, | ||
{ | ||
"name": "ECAL_INSTALL_RUNTIME", | ||
"value": "ON" | ||
}, | ||
{ | ||
"name": "ECAL_INSTALL_SAMPLE_SOURCES", | ||
"value": "ON" | ||
}, | ||
{ | ||
"name": "ECAL_INSTALL_SDK", | ||
"value": "ON" | ||
}, | ||
], | ||
"buildRoot": "${projectDir}\\_vs_out\\build\\${name}", | ||
"installRoot": "${projectDir}\\_vs_out\\install\\${name}", | ||
"cmakeCommandArgs": "", | ||
"buildCommandArgs": "", | ||
"ctestCommandArgs": "" | ||
"ctestCommandArgs": "", | ||
"variables": [ | ||
{ | ||
"name": "CMAKE_CXX_FLAGS", | ||
"value": "/DWIN32 /D_WINDOWS /W4 /GR /EHsc", | ||
"type": "STRING" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "x64-Release", | ||
"generator": "Visual Studio 15 2017 Win64", | ||
"generator": "Ninja", | ||
"configurationType": "Release", | ||
"buildRoot": "${projectDir}\\_vs_out\\build\\${name}", | ||
"installRoot": "${projectDir}\\_vs_out\\install\\${name}", | ||
"cmakeCommandArgs": "", | ||
"buildCommandArgs": "", | ||
"ctestCommandArgs": "", | ||
"inheritEnvironments": [ "msvc_x64_x64" ], | ||
"buildRoot": "${projectDir}\\_vs_cmake\\build\\${name}", | ||
"installRoot": "${projectDir}\\_vs_cmake\\install\\${name}", | ||
"variables": [ | ||
{ | ||
"name": "HAS_QT5", | ||
"value": "ON" | ||
}, | ||
{ | ||
"name": "BUILD_DOCS", | ||
"value": "ON" | ||
}, | ||
{ | ||
"name": "BUILD_APPS", | ||
"value": "ON" | ||
}, | ||
{ | ||
"name": "BUILD_SAMPLES", | ||
"value": "ON" | ||
}, | ||
{ | ||
"name": "BUILD_TIME", | ||
"value": "ON" | ||
}, | ||
{ | ||
"name": "ECAL_LAYER_FASTRTPS", | ||
"value": "OFF" | ||
}, | ||
{ | ||
"name": "ECAL_INSTALL_RUNTIME", | ||
"value": "ON" | ||
}, | ||
{ | ||
"name": "ECAL_INSTALL_SAMPLE_SOURCES", | ||
"value": "ON" | ||
}, | ||
{ | ||
"name": "ECAL_INSTALL_SDK", | ||
"value": "ON" | ||
}, | ||
], | ||
"name": "CMAKE_CXX_FLAGS", | ||
"value": "/DWIN32 /D_WINDOWS /W4 /GR /EHsc", | ||
"type": "STRING" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "x64-RelWithDebInfo", | ||
"generator": "Ninja", | ||
"configurationType": "RelWithDebInfo", | ||
"buildRoot": "${projectDir}\\_vs_out\\build\\${name}", | ||
"installRoot": "${projectDir}\\_vs_out\\install\\${name}", | ||
"cmakeCommandArgs": "", | ||
"buildCommandArgs": "", | ||
"ctestCommandArgs": "" | ||
"ctestCommandArgs": "", | ||
"inheritEnvironments": [ "msvc_x64_x64" ], | ||
"variables": [ | ||
{ | ||
"name": "CMAKE_CXX_FLAGS", | ||
"value": "/DWIN32 /D_WINDOWS /W4 /GR /EHsc", | ||
"type": "STRING" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} |
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.