Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
glslang
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository 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
CodeLinaro
public-release-test-restored
platform
external
deqp-deps
glslang
Commits
dc1a8196
Commit
dc1a8196
authored
8 years ago
by
John Kessenich
Browse files
Options
Downloads
Patches
Plain Diff
Infrastructure: Support standard build with ENABLE_HLSL set to off.
parent
65d538c8
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
StandAlone/CMakeLists.txt
+1
-1
1 addition, 1 deletion
StandAlone/CMakeLists.txt
glslang/Include/revision.h
+1
-1
1 addition, 1 deletion
glslang/Include/revision.h
gtests/CMakeLists.txt
+10
-4
10 additions, 4 deletions
gtests/CMakeLists.txt
with
13 additions
and
7 deletions
CMakeLists.txt
+
1
−
1
View file @
dc1a8196
...
...
@@ -71,5 +71,5 @@ endif()
add_subdirectory
(
SPIRV
)
if
(
ENABLE_HLSL
)
add_subdirectory
(
hlsl
)
endif
()
endif
(
ENABLE_HLSL
)
add_subdirectory
(
gtests
)
This diff is collapsed.
Click to expand it.
StandAlone/CMakeLists.txt
+
1
−
1
View file @
dc1a8196
...
...
@@ -28,7 +28,7 @@ set(LIBRARIES
if
(
ENABLE_HLSL
)
set
(
LIBRARIES
${
LIBRARIES
}
HLSL
)
endif
()
endif
(
ENABLE_HLSL
)
if
(
WIN32
)
set
(
LIBRARIES
${
LIBRARIES
}
psapi
)
...
...
This diff is collapsed.
Click to expand it.
glslang/Include/revision.h
+
1
−
1
View file @
dc1a8196
...
...
@@ -2,5 +2,5 @@
// For the version, it uses the latest git tag followed by the number of commits.
// For the date, it uses the current date (when then script is run).
#define GLSLANG_REVISION "Overload400-PrecQual.17
59
"
#define GLSLANG_REVISION "Overload400-PrecQual.17
60
"
#define GLSLANG_DATE "11-Jan-2017"
This diff is collapsed.
Click to expand it.
gtests/CMakeLists.txt
+
10
−
4
View file @
dc1a8196
...
...
@@ -40,9 +40,15 @@ if (TARGET gmock)
${
PROJECT_SOURCE_DIR
}
${
gmock_SOURCE_DIR
}
/include
${
gtest_SOURCE_DIR
}
/include
)
target_link_libraries
(
glslangtests PRIVATE
SPVRemapper glslang OSDependent OGLCompiler HLSL glslang
SPIRV glslang-default-resource-limits gmock
)
set
(
LIBRARIES
SPVRemapper glslang OSDependent OGLCompiler glslang
SPIRV glslang-default-resource-limits
)
if
(
ENABLE_HLSL
)
set
(
LIBRARIES
${
LIBRARIES
}
HLSL
)
endif
(
ENABLE_HLSL
)
target_link_libraries
(
glslangtests PRIVATE
${
LIBRARIES
}
gmock
)
add_test
(
NAME glslang-gtests
COMMAND glslangtests --test-root
"
${
GLSLANG_TEST_DIRECTORY
}
"
)
COMMAND glslangtests --test-root
"
${
GLSLANG_TEST_DIRECTORY
}
"
)
endif
()
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