2 Commits

Author SHA1 Message Date
d66e45aed3 Bump version to 1.0.0-alpha.4 in nuspec file 2025-10-18 20:30:39 +01:00
e7921b3278 Fix inclusion of libm. 2025-10-18 20:30:30 +01:00
2 changed files with 3 additions and 3 deletions

View File

@@ -287,9 +287,9 @@ endif()
# Check for math library # Check for math library
include(CheckLibraryExists) include(CheckLibraryExists)
check_library_exists(m log "" HAVE_LIB_M) check_library_exists(m cos "" HAVE_LIB_M)
if(HAVE_LIB_M) if(HAVE_LIB_M)
TARGET_LINK_LIBRARIES_WHOLE_ARCHIVE(aaruformat m) target_link_libraries(aaruformat m)
endif() endif()
# Find Doxygen for documentation generation # Find Doxygen for documentation generation

View File

@@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> <package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata> <metadata>
<id>libaaruformat</id> <id>libaaruformat</id>
<version>1.0.0-alpha.3</version> <version>1.0.0-alpha.4</version>
<description>Library for management of AaruFormat images.</description> <description>Library for management of AaruFormat images.</description>
<authors>claunia</authors> <authors>claunia</authors>
<projectUrl>https://github.com/aaru-dps/libaaruformat</projectUrl> <projectUrl>https://github.com/aaru-dps/libaaruformat</projectUrl>