Skip to content

Commit e7a323f

Browse files
SEbert-NIShawn Ebert
andauthored
Users/sebert/improvement for rte execution from source export (#2)
* Update dll search to find dll in a better location for a Source Distribution running out of the RTE * update for cmake properties --------- Co-authored-by: Shawn Ebert <shawn.ebert@emerson.com>
1 parent c748300 commit e7a323f

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.github/workflows/build_on_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
# Note the current convention is to use the -S and -B options here to specify source
3838
# and build directories, but this is only available with CMake 3.13 and higher.
3939
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
40-
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE
40+
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_POLICY_VERSION_MINIMUM=3.5
4141

4242
- name: Build
4343
working-directory: ${{runner.workspace}}/cmake/build

.github/workflows/windows_x64_build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ jobs:
3434
working-directory: ${{runner.workspace}}\grpc-labview\build
3535
run: cmake -G "Visual Studio 16 2019" ..
3636

37+
- name: Configure CMake
38+
working-directory: ${{runner.workspace}}\grpc-labview\build
39+
run: cmake -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -S . -B build
40+
3741
- name: Build
3842
working-directory: ${{runner.workspace}}\grpc-labview\build
3943
# Execute the build. You can specify a specific target with "--target <NAME>"

.github/workflows/windows_x86_build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ jobs:
2929
working-directory: ${{runner.workspace}}\grpc-labview\build
3030
run: cmake -G "Visual Studio 16 2019" -A Win32 ..
3131

32+
- name: Configure CMake
33+
working-directory: ${{runner.workspace}}\grpc-labview\build
34+
run: cmake -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -S . -B build
35+
3236
- name: Build
3337
working-directory: ${{runner.workspace}}\grpc-labview\build
3438
run: cmake --build . --config ${{env.BUILD_TYPE}} -j 16

0 commit comments

Comments
 (0)