-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pass target CPU architecture explicitly vis BUILD_TARGET_ARCH Use cmake --build to build, instead of hardcoding the path to msbuild
- Loading branch information
Showing
5 changed files
with
43 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,5 +15,5 @@ env_vars { | |
|
||
env_vars { | ||
key: "BUILD_TARGET_ARCH" | ||
value: "x86" | ||
value: "Win32" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Format: //devtools/kokoro/config/proto/build.proto | ||
|
||
# Location of the continuous bash script in Git. | ||
build_file: "cppdap/kokoro/windows/presubmit.bat" | ||
|
||
env_vars { | ||
key: "BUILD_SYSTEM" | ||
value: "cmake" | ||
} | ||
|
||
env_vars { | ||
key: "BUILD_GENERATOR" | ||
value: "Visual Studio 17 2022" | ||
} | ||
|
||
env_vars { | ||
key: "BUILD_TARGET_ARCH" | ||
value: "x64" | ||
} |
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,19 @@ | ||
# Format: //devtools/kokoro/config/proto/build.proto | ||
|
||
# Location of the continuous bash script in Git. | ||
build_file: "cppdap/kokoro/windows/presubmit.bat" | ||
|
||
env_vars { | ||
key: "BUILD_SYSTEM" | ||
value: "cmake" | ||
} | ||
|
||
env_vars { | ||
key: "BUILD_GENERATOR" | ||
value: "Visual Studio 17 2022" | ||
} | ||
|
||
env_vars { | ||
key: "BUILD_TARGET_ARCH" | ||
value: "Win32" | ||
} |