From edce4dca1892a96bae2221edbbee9fde69572652 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Hrdli=C4=8Dka?= Date: Sun, 29 Aug 2021 15:28:23 +0200 Subject: [PATCH] cmake: experimental preset should use new dynarec --- CMakePresets.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/CMakePresets.json b/CMakePresets.json index 89e6db4f3..8fc5f21a1 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -29,7 +29,8 @@ "generator": "Ninja", "cacheVariables": { "CMAKE_BUILD_TYPE": "Release", - "DEV_BRANCH": "OFF" + "DEV_BRANCH": "OFF", + "NEW_DYNAREC": "OFF" } }, { @@ -40,7 +41,8 @@ "generator": "Ninja", "cacheVariables": { "CMAKE_BUILD_TYPE": "Optimized", - "DEV_BRANCH": "OFF" + "DEV_BRANCH": "OFF", + "NEW_DYNAREC": "OFF" } }, { @@ -51,7 +53,8 @@ "generator": "Ninja", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", - "DEV_BRANCH": "OFF" + "DEV_BRANCH": "OFF", + "NEW_DYNAREC": "OFF" } }, { @@ -62,7 +65,8 @@ "generator": "Ninja", "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", - "DEV_BRANCH": "ON" + "DEV_BRANCH": "ON", + "NEW_DYNAREC": "ON" } } ]