fastqr 1.0.13 → 1.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CMakeLists.txt +11 -6
- data/VERSION +1 -1
- data/bindings/nodejs/package.json +1 -1
- data/bindings/ruby/lib/fastqr/version.rb +1 -1
- data/bindings/ruby/prebuilt/macos-arm64/bin/fastqr +0 -0
- data/bindings/ruby/prebuilt/macos-arm64.tar.gz +0 -0
- data/bindings/ruby/prebuilt/macos-x86_64/bin/fastqr +0 -0
- data/bindings/ruby/prebuilt/macos-x86_64.tar.gz +0 -0
- data/src/fastqr.cpp +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4cdb3559bf3039110155691fe81685ef92bb30bf590822c169874a3c3400988c
|
|
4
|
+
data.tar.gz: ed6c5251edc3aa0820802fd97cd10b9929b349f9ba342525188c89bab8da0dd5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac383dc1c131c3e46fca4cd7c1d41d31a7d2ae8da984a077d4543e3e21f511ccc877d3f1c00aaa08e707123159c87d8205fd1fa554957ea00132b8077cd97031
|
|
7
|
+
data.tar.gz: 3c29ced5757e655d38e697258708094f6e1e326d08dd68cad555f1276919e33e9c063f77c7f6a4452054322fa0eb5510a7f8ee033d601044e57232c0d022ec79
|
data/CMakeLists.txt
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
cmake_minimum_required(VERSION 3.15)
|
|
2
|
-
project(fastqr VERSION 1.0.
|
|
2
|
+
project(fastqr VERSION 1.0.15 LANGUAGES CXX C)
|
|
3
3
|
|
|
4
4
|
set(CMAKE_CXX_STANDARD 14)
|
|
5
5
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
@@ -20,7 +20,9 @@ option(FASTQR_BUILD_BINDINGS "Build language bindings" ON)
|
|
|
20
20
|
|
|
21
21
|
# Find dependencies
|
|
22
22
|
find_package(PkgConfig REQUIRED)
|
|
23
|
-
|
|
23
|
+
|
|
24
|
+
# Find libpng via pkg-config (more reliable than find_package)
|
|
25
|
+
pkg_check_modules(PNG REQUIRED libpng)
|
|
24
26
|
|
|
25
27
|
# Find libqrencode
|
|
26
28
|
pkg_check_modules(QRENCODE REQUIRED libqrencode)
|
|
@@ -66,7 +68,7 @@ target_link_directories(fastqr
|
|
|
66
68
|
target_link_libraries(fastqr
|
|
67
69
|
PRIVATE
|
|
68
70
|
${QRENCODE_LIBRARIES}
|
|
69
|
-
|
|
71
|
+
${PNG_LIBRARIES}
|
|
70
72
|
)
|
|
71
73
|
|
|
72
74
|
# Set library output name
|
|
@@ -83,12 +85,15 @@ add_executable(fastqr-cli
|
|
|
83
85
|
|
|
84
86
|
# For standalone CLI binary, link with object library and static dependencies
|
|
85
87
|
if(NOT BUILD_SHARED_LIBS)
|
|
88
|
+
# Add PNG library directories to search path
|
|
89
|
+
link_directories(${PNG_LIBRARY_DIRS})
|
|
90
|
+
|
|
86
91
|
# Find static versions of libraries
|
|
87
|
-
find_library(PNG_STATIC_LIBRARY
|
|
92
|
+
find_library(PNG_STATIC_LIBRARY
|
|
88
93
|
NAMES libpng.a libpng16.a
|
|
89
|
-
PATHS
|
|
94
|
+
PATHS
|
|
90
95
|
${PNG_LIBRARY_DIRS}
|
|
91
|
-
/usr/local/lib
|
|
96
|
+
/usr/local/lib
|
|
92
97
|
/opt/homebrew/lib
|
|
93
98
|
/usr/lib
|
|
94
99
|
NO_DEFAULT_PATH
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.15
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/src/fastqr.cpp
CHANGED