-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- This seems to be what is picked by default by cmake. OMTLMSimulator does not need or use CMake right now, however it links to libraries built by CMake (within OMSimulator, e.g., libxml2) which get compiled with /MD. So set it here as well to avoid link time failures.
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
CC=cl -EHsc /MP | ||
CC=cl -EHsc /MP /MD | ||
cc=cl | ||
|
||
INCLUDES= /Iinclude | ||
|
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,4 +1,4 @@ | ||
CC=cl -EHsc /MP | ||
CC=cl -EHsc /MP /MD | ||
cc=cl | ||
|
||
INCLUDES=/Iinclude /I../../../3rdParty/pthread/install/win/include | ||
|
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