Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
libaec
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
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
Mathis Rosenhauer
libaec
Commits
2d9a7312
Commit
2d9a7312
authored
2 years ago
by
Mathis Rosenhauer
Browse files
Options
Downloads
Patches
Plain Diff
Expand include path
parent
3fa0d2cf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/CMakeLists.txt
+5
-4
5 additions, 4 deletions
src/CMakeLists.txt
src/Makefile.am
+2
-1
2 additions, 1 deletion
src/Makefile.am
tests/Makefile.am
+1
-1
1 addition, 1 deletion
tests/Makefile.am
with
8 additions
and
6 deletions
src/CMakeLists.txt
+
5
−
4
View file @
2d9a7312
...
...
@@ -15,8 +15,7 @@ add_library(aec_static STATIC "$<TARGET_OBJECTS:aec>")
target_link_libraries
(
aec_static PUBLIC aec
)
set_target_properties
(
aec_static
PROPERTIES
OUTPUT_NAME $<IF:$<BOOL:
${
MSVC
}
>,aec-static,aec>
)
OUTPUT_NAME $<IF:$<BOOL:
${
MSVC
}
>,aec-static,aec>
)
add_library
(
aec_shared SHARED
"$<TARGET_OBJECTS:aec>"
)
target_link_libraries
(
aec_shared PUBLIC aec
)
...
...
@@ -24,7 +23,8 @@ set_target_properties(aec_shared
PROPERTIES
VERSION 0.0.12
SOVERSION 0
OUTPUT_NAME aec
)
OUTPUT_NAME aec
PUBLIC_HEADER
${
CMAKE_CURRENT_BINARY_DIR
}
/../include/libaec.h
)
# Wrapper for compatibility with szip
add_library
(
sz OBJECT sz_compat.c
)
...
...
@@ -43,7 +43,8 @@ set_target_properties(sz_shared
PROPERTIES
VERSION 2.0.1
SOVERSION 2
OUTPUT_NAME $<IF:$<BOOL:
${
MSVC
}
>,szip,sz>
)
OUTPUT_NAME $<IF:$<BOOL:
${
MSVC
}
>,szip,sz>
PUBLIC_HEADER ../include/szlib.h
)
# Simple client for testing and benchmarking.
# Can also be used stand-alone
...
...
This diff is collapsed.
Click to expand it.
src/Makefile.am
+
2
−
1
View file @
2d9a7312
AM_CFLAGS
=
$(
CFLAG_VISIBILITY
)
AM_CPPFLAGS
=
-I
$(
top_srcdir
)
/include
-DBUILDING_LIBAEC
AM_CPPFLAGS
=
-I
$(
top_srcdir
)
/include
-I
$(
top_builddir
)
/include
\
-DBUILDING_LIBAEC
lib_LTLIBRARIES
=
libaec.la libsz.la
libaec_la_SOURCES
=
encode.c encode_accessors.c decode.c
\
encode.h encode_accessors.h decode.h
...
...
This diff is collapsed.
Click to expand it.
tests/Makefile.am
+
1
−
1
View file @
2d9a7312
AUTOMAKE_OPTIONS
=
color-tests
AM_CPPFLAGS
=
-I
$(
top_srcdir
)
/include
AM_CPPFLAGS
=
-I
$(
top_srcdir
)
/include
-I
$(
top_builddir
)
/include
TESTS
=
check_code_options check_buffer_sizes check_long_fs
\
szcomp.sh sampledata.sh
TEST_EXTENSIONS
=
.sh
...
...
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