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
3fa0d2cf
Commit
3fa0d2cf
authored
2 years ago
by
Mathis Rosenhauer
Browse files
Options
Downloads
Patches
Plain Diff
Move generated include files
to /../include
parent
daeca512
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
src/CMakeLists.txt
+5
-6
5 additions, 6 deletions
src/CMakeLists.txt
with
6 additions
and
7 deletions
CMakeLists.txt
+
1
−
1
View file @
3fa0d2cf
...
...
@@ -36,7 +36,7 @@ endif()
# Communicate findings to code. Has to be compatible with autoconf's config.h.
configure_file
(
"cmake/config.h.in"
"
${
CMAKE_CURRENT_BINARY_DIR
}
/config.h"
)
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
include/
config.h"
)
# Create libaec.h with current version information
configure_file
(
...
...
This diff is collapsed.
Click to expand it.
src/CMakeLists.txt
+
5
−
6
View file @
3fa0d2cf
...
...
@@ -7,7 +7,7 @@ add_library(aec OBJECT
target_include_directories
(
aec
PUBLIC
"$<BUILD_INTERFACE:
${
CMAKE_CURRENT_SOURCE_DIR
}
/../include>"
"$<BUILD_INTERFACE:
${
CMAKE_CURRENT_BINARY_DIR
}
/..>"
"$<BUILD_INTERFACE:
${
CMAKE_CURRENT_BINARY_DIR
}
/..
/include
>"
"$<INSTALL_INTERFACE:include>"
)
# Create both static and shared aec library.
...
...
@@ -15,7 +15,8 @@ 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
)
...
...
@@ -23,8 +24,7 @@ set_target_properties(aec_shared
PROPERTIES
VERSION 0.0.12
SOVERSION 0
OUTPUT_NAME aec
PUBLIC_HEADER
${
CMAKE_CURRENT_BINARY_DIR
}
/../include/libaec.h
)
OUTPUT_NAME aec
)
# Wrapper for compatibility with szip
add_library
(
sz OBJECT sz_compat.c
)
...
...
@@ -43,8 +43,7 @@ set_target_properties(sz_shared
PROPERTIES
VERSION 2.0.1
SOVERSION 2
OUTPUT_NAME $<IF:$<BOOL:
${
MSVC
}
>,szip,sz>
PUBLIC_HEADER ../include/szlib.h
)
OUTPUT_NAME $<IF:$<BOOL:
${
MSVC
}
>,szip,sz>
)
# Simple client for testing and benchmarking.
# Can also be used stand-alone
...
...
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