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.
Fixes OpenDDS#4328 The equivalent to many MPC features in CMake are built up using a function called `_opendds_feature` that adds features to lists to use. The issue is these lists are set as cache variables, which are persistent across CMake runs. This resulted the features being appended each time, so they are listed multiple times in output and `default.features` if building ACE. These don't really have to be cache variables, so just set them as normal variables in the parent scope. Also fixed some typos in the same file and added a note about removing an include in the future.
- Loading branch information
1 parent
ac90cef
commit 3ee7100
Showing
2 changed files
with
14 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.. news-prs: 4329 | ||
.. news-start-section: Fixes | ||
.. news-start-section: Building with CMake | ||
- Fixed :ghissue:`4328`, where each run of CMake effectively always appended the MPC features to ``default.features`` in ACE. | ||
.. news-end-section | ||
.. news-end-section |