forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow Compiling with CMake and C++03
This continues the work started in OpenDDS#4481 and tries to correctly handle C++ standards in all CMake support. Previously the CMake support was agnostic towards C++ standards, but this meant that building with CMake didn't have a way of differentiating C++ standards. Now we can detect C++ standard support and should be able to build ACE/TAO accordingly. Also: - Added `OPENDDS_CXX_STD_YEAR` CMake variable for easy checking of C++ standard support. - Passing C++ standard to the ACE/TAO MPC builds and `CMAKE_CXX_COMPILER` for gnuace builds. - Removed need for `cmake/detect_ace.pl` - Some of the changes originally in OpenDDS#4374 - MPC location message will now say when it wasn't set. - Split adding of tests between different directories.
- Loading branch information
1 parent
3c813b5
commit 16e6f29
Showing
12 changed files
with
363 additions
and
308 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,4 @@ | ||
#if __cplusplus < OPENDDS_TEST_CPLUSPLUS | ||
# error "Less then requested value" | ||
#endif | ||
int main() {} |
This file was deleted.
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
Oops, something went wrong.