Skip to content

Commit

Permalink
Fix meson subproject loading
Browse files Browse the repository at this point in the history
  • Loading branch information
rvaser committed Oct 30, 2023
1 parent 1ab9ab0 commit fd3a5c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.12)

project(spoa VERSION 4.1.2
project(spoa VERSION 4.1.3
LANGUAGES CXX
DESCRIPTION "Spoa is a c++ library (and tool) for SIMD vectorized partial order alignment.")

Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'spoa',
['cpp'],
version : '4.1.2',
version : '4.1.3',
default_options : [
'buildtype=release',
'warning_level=3',
Expand All @@ -26,7 +26,7 @@ if get_option('cereal')
spoa_lib_deps += spoa_cereal_dep
endif

if (not meson.is_subproject())
if (not meson.is_subproject()) and (get_option('exe') or get_option('tests'))
# biosoup
spoa_biosoup_dep = dependency('biosoup', version : '>= 0.11.0', fallback : ['biosoup', 'biosoup_dep'])

Expand Down

0 comments on commit fd3a5c5

Please sign in to comment.