aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Moguillansky <jmoguillansky@gopro.com>2022-05-19 11:14:18 -0700
committerDavid Neto <dneto@google.com>2022-06-02 12:45:05 -0400
commit7e2cfcf2b75c245fa3ceaf2e276180cbf8f107ea (patch)
tree1b4243924a98f3718700a50182cbd8decaf0989a
parentb4a8e451994541ee5d40574b1ac50b8f33933aa3 (diff)
downloadshaderc-7e2cfcf2b75c245fa3ceaf2e276180cbf8f107ea.tar.gz
CMakeLists: enable CMAKE_MSVC_RUNTIME_LIBRARY property
-rw-r--r--CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b55e1f0..99be25c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -13,6 +13,10 @@
# limitations under the License.
cmake_minimum_required(VERSION 2.8.12)
+
+# Enable MSVC Runtime Library Property
+cmake_policy(SET CMP0091 NEW)
+
project(shaderc)
enable_testing()