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
deaaefa5
Unverified
Commit
deaaefa5
authored
3 years ago
by
Miloš Komarčević
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Improve cmake for mingw (#19)
Signed-off-by:
Miloš Komarčević
<
miloskomarcevic@aim.com
>
parent
a4139006
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
CMakeLists.txt
+4
-2
4 additions, 2 deletions
CMakeLists.txt
cmake/libaec-config.cmake.in
+3
-8
3 additions, 8 deletions
cmake/libaec-config.cmake.in
src/CMakeLists.txt
+5
-3
5 additions, 3 deletions
src/CMakeLists.txt
with
12 additions
and
13 deletions
CMakeLists.txt
+
4
−
2
View file @
deaaefa5
...
...
@@ -7,7 +7,7 @@ set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE)
set
(
CMAKE_C_STANDARD 99
)
set
(
CMAKE_C_VISIBILITY_PRESET hidden
)
set
(
CMAKE_POSITION_INDEPENDENT_CODE ON
)
enable_testing
(
)
include
(
CTest
)
include
(
TestBigEndian
)
test_big_endian
(
WORDS_BIGENDIAN
)
...
...
@@ -39,7 +39,9 @@ configure_file(
"
${
CMAKE_CURRENT_BINARY_DIR
}
/config.h"
)
add_subdirectory
(
src
)
add_subdirectory
(
tests
)
if
(
BUILD_TESTING
)
add_subdirectory
(
tests
)
endif
()
option
(
AEC_FUZZING
"Enable build of fuzzing target"
OFF
)
if
(
AEC_FUZZING
)
...
...
This diff is collapsed.
Click to expand it.
cmake/libaec-config.cmake.in
+
3
−
8
View file @
deaaefa5
...
...
@@ -27,7 +27,7 @@
find_path(libaec_INCLUDE_DIR NAMES libaec.h DOC "AEC include directory")
find_path(SZIP_INCLUDE_DIR NAMES szlib.h DOC "SZIP include directory")
if (libaec_USE_STATIC_LIBS)
if (
WIN32
)
if (
MSVC
)
find_library(libaec_LIBRARY NAMES aec_static.lib DOC "AEC library")
find_library(SZIP_LIBRARY NAMES szip_static.lib DOC "SZIP compatible version of the AEC library")
else ()
...
...
@@ -35,13 +35,8 @@ if (libaec_USE_STATIC_LIBS)
find_library(SZIP_LIBRARY NAMES libsz.a DOC "SZIP compatible version of the AEC library")
endif ()
else ()
if (WIN32)
find_library(libaec_LIBRARY NAMES aec.lib DOC "AEC library")
find_library(SZIP_LIBRARY NAMES szip.lib DOC "SZIP compatible version of the AEC library")
else ()
find_library(libaec_LIBRARY NAMES libaec.so DOC "AEC library")
find_library(SZIP_LIBRARY NAMES libsz.so DOC "SZIP compatible version of the AEC library")
endif ()
find_library(libaec_LIBRARY NAMES aec DOC "AEC library")
find_library(SZIP_LIBRARY NAMES sz szip DOC "SZIP compatible version of the AEC library")
endif ()
# Check version here
...
...
This diff is collapsed.
Click to expand it.
src/CMakeLists.txt
+
5
−
3
View file @
deaaefa5
...
...
@@ -15,7 +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:
${
WIN32
}
>,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
)
...
...
@@ -34,7 +34,7 @@ target_link_libraries(sz PUBLIC aec)
add_library
(
sz_static STATIC
"$<TARGET_OBJECTS:sz>"
"$<TARGET_OBJECTS:aec>"
)
set_target_properties
(
sz_static
PROPERTIES
OUTPUT_NAME $<IF:$<BOOL:
${
WIN32
}
>,szip_static,sz>
)
OUTPUT_NAME $<IF:$<BOOL:
${
MSVC
}
>,szip_static,sz>
)
target_link_libraries
(
sz_static PUBLIC sz
)
add_library
(
sz_shared SHARED
"$<TARGET_OBJECTS:sz>"
"$<TARGET_OBJECTS:aec>"
)
...
...
@@ -43,7 +43,7 @@ set_target_properties(sz_shared
PROPERTIES
VERSION 2.0.1
SOVERSION 2
OUTPUT_NAME $<IF:$<BOOL:
${
WIN32
}
>,szip,sz>
OUTPUT_NAME $<IF:$<BOOL:
${
MSVC
}
>,szip,sz>
PUBLIC_HEADER ../include/szlib.h
)
# Simple client for testing and benchmarking.
...
...
@@ -70,7 +70,9 @@ if(UNIX)
${
CMAKE_CURRENT_SOURCE_DIR
}
/../data/typical.rz
COMMAND
${
CMAKE_CURRENT_SOURCE_DIR
}
/bdec.sh
DEPENDS aec_client utime
)
endif
()
if
(
UNIX OR MINGW
)
# Install manpage
install
(
FILES aec.1
...
...
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