File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ public sealed class BuildWindowsTask : FrostingTask<BuildContext>
10
10
public override void Run ( BuildContext context )
11
11
{
12
12
var buildWorkingDir = "basis_universal/" ;
13
+
14
+ // needed until https://github.com/BinomialLLC/basis_universal/pull/391 gets merged
15
+ context . ReplaceRegexInFiles ( "basis_universal/CMakeLists.txt" , "project(basisu)" , "project(basisu C CXX)\n set(CMAKE_CXX_STANDARD 17)" ) ;
16
+
13
17
context . StartProcess ( "cmake" , new ProcessSettings { WorkingDirectory = buildWorkingDir , Arguments = "-DSAN=ON CMakeLists.txt" } ) ;
14
18
context . ReplaceTextInFiles ( "basis_universal/basisu.vcxproj" , "MultiThreadedDLL" , "MultiThreaded" ) ;
15
19
context . StartProcess ( "cmake" , new ProcessSettings { WorkingDirectory = buildWorkingDir , Arguments = "--build . --config release" } ) ;
You can’t perform that action at this time.
0 commit comments