Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mathis Rosenhauer
libaec
Commits
deaaefa5
Unverified
Commit
deaaefa5
authored
Jun 28, 2021
by
Miloš Komarčević
Committed by
GitHub
Jun 28, 2021
Browse files
Improve cmake for mingw (#19)
Signed-off-by:
Miloš Komarčević
<
miloskomarcevic@aim.com
>
parent
a4139006
Changes
3
Show whitespace changes
Inline
Side-by-side
CMakeLists.txt
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
)
...
...
cmake/libaec-config.cmake.in
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
...
...
src/CMakeLists.txt
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
...
...
Write
Preview
Supports
Markdown
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