-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
19462: Adds
docs
folder to install with new version.json file (#84)
Also fixes action depends bug in mac large runner on GitHub.
- Loading branch information
1 parent
fb3f2af
commit 5ca006b
Showing
4 changed files
with
19 additions
and
0 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 |
---|---|---|
|
@@ -291,3 +291,4 @@ endif() | |
|
||
include(create_tests) | ||
include(create_package) | ||
include(install_docs) |
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,14 @@ | ||
# | ||
# Install docs | ||
# | ||
|
||
# Install language reference: | ||
install( | ||
FILES | ||
"${CMAKE_SOURCE_DIR}/docs/index.html" | ||
"${CMAKE_SOURCE_DIR}/docs/language.js" | ||
DESTINATION "docs/language_reference" | ||
) | ||
|
||
# Install version.json: | ||
install(FILES "${CMAKE_BINARY_DIR}/version.json" DESTINATION "docs") |
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