diff options
| author | David Pinedo <david@lunarg.com> | 2016-05-20 15:05:44 -0600 |
|---|---|---|
| committer | David Pinedo <david@lunarg.com> | 2016-05-20 15:05:44 -0600 |
| commit | 8f69c97c0a427c2f313652a4afea48182ae3df66 (patch) | |
| tree | a064a8e703beac3d1235070bc49a16f02bcd8657 /loader | |
| parent | 1553f6107528573692760b436a4ce21e2d290d8c (diff) | |
| download | usermoji-8f69c97c0a427c2f313652a4afea48182ae3df66.tar.xz | |
winrtinstaller: remove dependency on msvcrt redistributables
Loader and demos now use static version of msvcrt.
Runtime Installer no longer installs msvcrt.
Diffstat (limited to 'loader')
| -rw-r--r-- | loader/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/loader/CMakeLists.txt b/loader/CMakeLists.txt index d6be9c11..2c3b2455 100644 --- a/loader/CMakeLists.txt +++ b/loader/CMakeLists.txt @@ -37,6 +37,8 @@ set (OPT_LOADER_SRCS set (LOADER_SRCS ${NORMAL_LOADER_SRCS} ${OPT_LOADER_SRCS}) if (WIN32) + set(CMAKE_C_FLAGS_DEBUG "-MTd") + set(CMAKE_C_FLAGS_RELEASE "-MT") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_CRT_SECURE_NO_WARNINGS") # Build dev_ext_trampoline.c with -O2 to allow tail-call optimization. # Build other C files with normal options |
