Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
rvaser committed May 18, 2020
1 parent a2e38dc commit 20ad642
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.2)
project(spoa LANGUAGES CXX VERSION 3.0.0)
project(spoa LANGUAGES CXX VERSION 4.0.0)

include(GNUInstallDirs)

Expand Down Expand Up @@ -47,7 +47,7 @@ endif()
# build SPOA as a static library by default
set(BUILD_SHARED_LIBS OFF CACHE BOOL "Build all libraries as shared")

list(APPEND INCLUDES
list(APPEND INCLUDES
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/vendor/simde>)
Expand Down Expand Up @@ -89,10 +89,10 @@ set_target_properties(spoa_${arch}

endforeach()

target_link_libraries(spoa
cpu_features
$<TARGET_OBJECTS:spoa_avx2>
$<TARGET_OBJECTS:spoa_sse4.1>
target_link_libraries(spoa
cpu_features
$<TARGET_OBJECTS:spoa_avx2>
$<TARGET_OBJECTS:spoa_sse4.1>
$<TARGET_OBJECTS:spoa_sse2>)

endif()
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include "spoa/spoa.hpp"
#include "bioparser/bioparser.hpp"

static const std::string version = "v3.2.0";
static const std::string version = "v3.3.0";

static struct option options[] = {
{"algorithm", required_argument, nullptr, 'l'},
Expand Down

0 comments on commit 20ad642

Please sign in to comment.