Skip to content

Commit 341ef8c

Browse files
authored
Do/release (#2601)
* fix release test package build * fix embree version for windows integration tests * fix cmake presets trailing comma * test fix for windows integration tests * embree docs run tests * update docs * added sign file back to windows packages
1 parent 58ac8e3 commit 341ef8c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

common/cmake/package.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ IF(WIN32)
300300
ENDIF()
301301

302302
add_custom_target(
303-
post_package "${PROJECT_SOURCE_DIR}/scripts/package_post_build_win.bat" "${PACKAGE_BASE_NAME}"
303+
post_package "${PROJECT_SOURCE_DIR}/scripts/package_post_build_win.bat" "${PACKAGE_BASE_NAME}" "${EMBREE_SIGN_FILE}"
304304
)
305305

306306
add_custom_target(

scripts/cmake-presets/package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,17 @@
8181
"hidden": true,
8282
"inherits": ["package", "windows"],
8383
"cacheVariables": {
84-
"CMAKE_INSTALL_DATAROOTDIR": ""
84+
"CMAKE_INSTALL_DATAROOTDIR": "",
85+
"EMBREE_SIGN_FILE": "$env{SIGN_FILE_WINDOWS}"
8586
}
8687
},
8788
{
8889
"name": "package-static-windows",
8990
"hidden": true,
9091
"inherits": ["package-static", "windows"],
9192
"cacheVariables": {
92-
"CMAKE_INSTALL_DATAROOTDIR": ""
93+
"CMAKE_INSTALL_DATAROOTDIR": "",
94+
"EMBREE_SIGN_FILE": "$env{SIGN_FILE_WINDOWS}"
9395
}
9496
}
9597
]

0 commit comments

Comments
 (0)