Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
glslang
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
glslang
Commits
56a75975
Commit
56a75975
authored
Aug 09, 2018
by
John Kessenich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix #1469: Make it easier to copy/paste build instructions.
parent
c4510e5e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
README.md
README.md
+4
-4
No files found.
README.md
100644 → 100755
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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment