-
Notifications
You must be signed in to change notification settings - Fork 389
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Dynamic RTL. Support newer versions of VC
- Loading branch information
Dale Wilson
committed
Jan 18, 2017
1 parent
6f842cf
commit 35f2cfb
Showing
2 changed files
with
11 additions
and
9 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,5 +1,16 @@ | ||
project { | ||
includes += $(LIQUIBOOK_ROOT)/src | ||
libpaths += $(LIQUIBOOK_ROOT)/lib | ||
|
||
// Force use of Visual C++ DLL runtime libraries | ||
specific(vc71,vc8,vc9) { | ||
Debug::runtime_library = 3 | ||
Release::runtime_library = 2 | ||
} | ||
specific(vc10,vc11,vc12,vc13,vc14) { | ||
Debug::runtime_library = MultiThreadedDebugDLL | ||
Release::runtime_library = MultiThreadedDLL | ||
} | ||
|
||
} | ||
|
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,14 +1,5 @@ | ||
project : liquibook { | ||
libout = $(LIQUIBOOK_ROOT)/lib | ||
macros += LIQUIBOOK_BUILD_DLL | ||
// Force use of Visual C++ DLL runtime libraries | ||
specific(vc71,vc8,vc9) { | ||
Debug::runtime_library = 3 | ||
Release::runtime_library = 2 | ||
} | ||
specific(vc10,vc11) { | ||
Debug::runtime_library = MultiThreadedDebugDLL | ||
Release::runtime_library = MultiThreadedDLL | ||
} | ||
} | ||
|