Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
ndk-platform-external-shaderc-glslang
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
android
ndk-platform-external-shaderc-glslang
Commits
56a75975
Commit
56a75975
authored
6 years ago
by
John Kessenich
Browse files
Options
Downloads
Patches
Plain Diff
Fix #1469: Make it easier to copy/paste build instructions.
parent
c4510e5e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+4
-4
4 additions, 4 deletions
README.md
with
4 additions
and
4 deletions
README.md
100644 → 100755
+
4
−
4
View file @
56a75975
...
...
@@ -105,8 +105,8 @@ cd $BUILD_DIR
For building on Linux:
```
bash
cmake
-DCMAKE_BUILD_TYPE
=
{
Debug|Release|RelWithDebInfo
}
\
-DCMAKE_INSTALL_PREFIX
=
"
$(
pwd
)
/install"
$SOURCE_DIR
cmake
-DCMAKE_BUILD_TYPE
=
Release
-DCMAKE_INSTALL_PREFIX
=
"
$(
pwd
)
/install"
$SOURCE_DIR
# "Release" (for CMAKE_BUILD_TYPE) could also be "Debug" or "RelWithDebInfo"
```
For building on Windows:
...
...
@@ -125,8 +125,8 @@ The CMake GUI also works for Windows (version 3.4.1 tested).
make
-j4
install
# for Windows:
cmake
--build
.
--config
{
Release
|Debug|MinSizeRel|RelWithDebInfo
}
\
--target
install
cmake
--build
.
--config
Release
--target
install
# "Release" (for --config) could also be "Debug", "MinSizeRel", or "RelWithDebInfo"
```
If using MSVC, after running CMake to configure, use the
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment