FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
binaryninja-api/api-docs/cppdocs/make.bat at dev · Vector35/binaryninja-api · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
Vector35
/
binaryninja-api
Public
Notifications
You must be signed in to change notification settings
Fork
294
Star
1.3k
Code
Issues
1.9k
Pull requests
37
Discussions
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
binaryninja-api
/
api-docs
/
cppdocs
/
make.bat
Copy path
More file actions
More file actions
Latest commit
History
History
History
31 lines (25 loc) · 547 Bytes
Breadcrumbs
binaryninja-api
/
api-docs
/
cppdocs
/
make.bat
Copy path
File metadata and controls
31 lines (25 loc) · 547 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@
echo
off
set
PYTHON
=
poetry run python
if
"
%1
"
==
"
help
"
(
echo
Please use `make
<
target
>
`
where
<
target
>
is one of
echo
clean to clean the folders
echo
html to make standalone HTML files
echo
docset to make a Dash docset
exit
/b
)
if
"
%1
"
==
"
clean
"
(
rmdir
/s /q html
rmdir
/s /q docset
rmdir
/s /q xml
exit
/b
)
if
"
%1
"
==
"
html
"
(
%PYTHON%
build_min_docs.py
exit
/b
)
if
"
%1
"
==
"
docset
"
(
%PYTHON%
build_min_docs.py --docset
exit
/b
)
echo
Unknown target:
%1
exit
/b
1
Back
|
FazBrowse Home
|
New Git URL