-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
118 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0
tests/build_all_tests.sh → tests/unix_build_all_tests.sh
100755 → 100644
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
set build_dir=cmake-build-tests-windows-clang-cl | ||
|
||
if not exist ".\%build_dir%" mkdir %build_dir% | ||
|
||
cd ".\%build_dir%" | ||
|
||
if %errorlevel% neq 0 exit /b %errorlevel% | ||
|
||
cmake -G "Visual Studio 17 2022" -A x64 -T ClangCL -S .. -B . | ||
if %errorlevel% neq 0 exit /b %errorlevel% | ||
|
||
msbuild tests.sln -property:Configuration=RelWithDebInfo -noWarn:D9025 -warnaserror -maxcpucount:%NUMBER_OF_PROCESSORS% | ||
if %errorlevel% neq 0 exit /b %errorlevel% | ||
|
||
cd .. | ||
|
||
set build_dir=cmake-build-tests-windows-msvc | ||
|
||
if not exist ".\%build_dir%" mkdir %build_dir% | ||
|
||
cd ".\%build_dir%" | ||
|
||
if %errorlevel% neq 0 exit /b %errorlevel% | ||
|
||
cmake -G "Visual Studio 17 2022" -A x64 -S .. -B . | ||
if %errorlevel% neq 0 exit /b %errorlevel% | ||
|
||
msbuild tests.sln -property:Configuration=RelWithDebInfo -noWarn:D9025 -warnaserror -maxcpucount:%NUMBER_OF_PROCESSORS% | ||
if %errorlevel% neq 0 exit /b %errorlevel% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters