Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.9)
set(CMAKE_CXX_STANDARD 11)
project(aws-lambda-runtime
VERSION 0.2.6
VERSION 0.0.0
LANGUAGES CXX)

option(ENABLE_LTO "Enables link-time optimization, requires compiler support." ON)
Expand All @@ -16,7 +16,7 @@ add_library(${PROJECT_NAME}

set_target_properties(${PROJECT_NAME} PROPERTIES
SOVERSION 0
VERSION ${PROJECT_VERSION})
VERSION ${PROJECT_VERSION}-dev)

target_include_directories(${PROJECT_NAME} PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
Expand Down
2 changes: 1 addition & 1 deletion tests/version_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ TEST(VersionTests, get_version_major)
TEST(VersionTests, get_version_minor)
{
auto version = get_version_minor();
ASSERT_GE(version, 1);
ASSERT_GE(version, 0);
}

TEST(VersionTests, get_version_patch)
Expand Down