Skip to content

Commit

Permalink
Updated conanfile.py and vcpkg port file.
Browse files Browse the repository at this point in the history
  • Loading branch information
kmhofmann committed May 26, 2018
1 parent 4ee6619 commit e6592f5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.5)
project(selene VERSION 0.1.0 LANGUAGES CXX)
project(selene VERSION 0.1.1 LANGUAGES CXX)

option(SELENE_BUILD_TESTS "Build Selene tests" OFF)
option(SELENE_BUILD_EXAMPLES "Build Selene examples" OFF)
Expand Down
6 changes: 3 additions & 3 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ used to host the **Selene** package:

This has to be done once per Conan installation.

Then install the actual package; the current library version provided is `0.1.0`.
Then install the actual package; the current library version provided is `0.1.1`.

conan install selene/0.1.0@selene/testing -r kmhofmann
conan install selene/0.1.1@selene/testing -r kmhofmann

Alternatively, just specify `selene/0.1.0@selene/testing` in a project's `conanfile.txt`.
Alternatively, just specify `selene/0.1.1@selene/testing` in a project's `conanfile.txt`.

Please refer to the [Conan documentation](http://docs.conan.io/) on how to make use of the installed package.

Expand Down
2 changes: 1 addition & 1 deletion package/conan/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class SeleneConan(ConanFile):
name = "selene"
version = "0.1.0"
version = "0.1.1"
license = "MIT"
url = "https://github.com/kmhofmann/selene"
description = "A C++14 image representation, processing and I/O library."
Expand Down
2 changes: 1 addition & 1 deletion package/vcpkg/CONTROL
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Source: selene
Version: 0.1.0
Version: 0.1.1
Description: A C++14 image representation, processing and I/O library.
Build-Depends: zlib, libpng, libjpeg-turbo
6 changes: 3 additions & 3 deletions package/vcpkg/portfile.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
include(vcpkg_common_functions)

set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/selene-0.1.0)
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/selene-0.1.1)

if(VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
set(SELENE_EXPORT_SYMBOLS TRUE)
Expand All @@ -11,8 +11,8 @@ endif()
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO kmhofmann/selene
REF v0.1.0
SHA512 59b136cc92a2a6e09d5260fa642f3c7405d89f0505adda4693652f866d51464dfe0380e05a0b20e2cb22b091b9d142a2082e8d1c96164d8821ebebd0df78c4ad
REF v0.1.1
SHA512 3793396b8926e104cacff298a7d31f1821937f4107a43100c9bfee454744df3dc5d472e326ed4c311f8d5d89b3fa049a82e76736f99e526d32a215320419dd02
HEAD_REF master
)

Expand Down

0 comments on commit e6592f5

Please sign in to comment.