Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
5abae0a7
Commit
5abae0a7
authored
Feb 27, 2017
by
Tom Finegan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move aom_dsp.cmake lib list updates into setup_aom_dsp_targets().
Change-Id: I5eb53ef88fb136bf8e06aa2cdc2c1feae9bec956
parent
188880b6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
9 deletions
+3
-9
aom_dsp/aom_dsp.cmake
aom_dsp/aom_dsp.cmake
+3
-9
No files found.
aom_dsp/aom_dsp.cmake
View file @
5abae0a7
...
...
@@ -272,28 +272,22 @@ if (CONFIG_MOTION_VAR)
"
${
AOM_ROOT
}
/aom_dsp/x86/obmc_variance_sse4.c"
)
endif
()
set
(
AOM_LIB_TARGETS
${
AOM_LIB_TARGETS
}
aom_dsp_common
)
if
(
CONFIG_DECODERS
)
set
(
AOM_LIB_TARGETS
${
AOM_LIB_TARGETS
}
aom_dsp_decoder
)
endif
()
if
(
CONFIG_ENCODERS
)
set
(
AOM_LIB_TARGETS
${
AOM_LIB_TARGETS
}
aom_dsp_encoder
)
endif
()
# Creates aom_dsp build targets. Must not be called until after libaom target
# has been created.
function
(
setup_aom_dsp_targets
)
add_library
(
aom_dsp_common OBJECT
${
AOM_DSP_COMMON_SOURCES
}
)
set
(
AOM_LIB_TARGETS
${
AOM_LIB_TARGETS
}
aom_dsp_common
)
target_sources
(
aom PUBLIC $<TARGET_OBJECTS:aom_dsp_common>
)
if
(
CONFIG_DECODERS
)
add_library
(
aom_dsp_decoder OBJECT
${
AOM_DSP_DECODER_SOURCES
}
)
set
(
AOM_LIB_TARGETS
${
AOM_LIB_TARGETS
}
aom_dsp_decoder
)
target_sources
(
aom PUBLIC $<TARGET_OBJECTS:aom_dsp_decoder>
)
endif
()
if
(
CONFIG_ENCODERS
)
add_library
(
aom_dsp_encoder OBJECT
${
AOM_DSP_ENCODER_SOURCES
}
)
set
(
AOM_LIB_TARGETS
${
AOM_LIB_TARGETS
}
aom_dsp_encoder
)
target_sources
(
aom PUBLIC $<TARGET_OBJECTS:aom_dsp_encoder>
)
endif
()
...
...
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