Skip to content

Commit

Permalink
Use Dynamic RTL. Support newer versions of VC
Browse files Browse the repository at this point in the history
  • Loading branch information
Dale Wilson committed Jan 18, 2017
1 parent 6f842cf commit 35f2cfb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
11 changes: 11 additions & 0 deletions mpc/liquibook.mpb
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
}

}

9 changes: 0 additions & 9 deletions mpc/liquibook_lib.mpb
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
}
}

0 comments on commit 35f2cfb

Please sign in to comment.