Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Game Library
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Onuralp SEZER
Game Library
Commits
fa4067ff
Commit
fa4067ff
authored
2 years ago
by
Joseph Walton-Rivers
Browse files
Options
Downloads
Patches
Plain Diff
fix capitalisation on OpenAL's includes
parent
8b173ba3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fggl/audio/openal/CMakeLists.txt
+3
-3
3 additions, 3 deletions
fggl/audio/openal/CMakeLists.txt
with
3 additions
and
3 deletions
fggl/audio/openal/CMakeLists.txt
+
3
−
3
View file @
fa4067ff
...
@@ -2,10 +2,10 @@ find_package( OpenAL CONFIG )
...
@@ -2,10 +2,10 @@ find_package( OpenAL CONFIG )
if
(
NOT OpenAL_FOUND
)
if
(
NOT OpenAL_FOUND
)
# ubuntu/debian openal-soft package doesn't seem to have a config file
# ubuntu/debian openal-soft package doesn't seem to have a config file
# it's probably falling back to findOpenAL.cmake
# it's probably falling back to findOpenAL.cmake
message
(
STATUS
"
Using
OpenAL-Soft config missing - falling back"
)
message
(
STATUS
"OpenAL-Soft config missing - falling back"
)
find_package
(
OpenAL REQUIRED
)
find_package
(
OpenAL REQUIRED
)
target_link_libraries
(
fggl
public
${
OPENAL_LIBRARY
}
)
target_link_libraries
(
fggl
PUBLIC
${
OPENAL_LIBRARY
}
)
target_include_directories
(
fggl
public
${
OPENAL_INCLUDE_DIR
}
)
target_include_directories
(
fggl
PUBLIC
${
OPENAL_INCLUDE_DIR
}
)
else
()
else
()
# we're using target-based
# we're using target-based
message
(
STATUS
"Using OpenAL-Soft config file"
)
message
(
STATUS
"Using OpenAL-Soft config file"
)
...
...
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