Skip to content

Commit

Permalink
Set version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sascha Brandt committed Sep 17, 2019
1 parent dc5f100 commit 5cb285f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
11 changes: 6 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
#
# This file is part of the MinSG library.
# Copyright (C) 2009-2013 Benjamin Eikel <[email protected]>
# Copyright (C) 2014-2019 Sascha Brandt <[email protected]>
#
# This library is subject to the terms of the Mozilla Public License, v. 2.0.
# You should have received a copy of the MPL along with this library; see the
# file LICENSE. If not, you can obtain one at http://mozilla.org/MPL/2.0/.
#
cmake_minimum_required(VERSION 3.1.0)
project(MinSG VERSION 0.2.0)
project(MinSG VERSION 0.3.0)

set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_EXTENSIONS OFF)
Expand All @@ -34,19 +35,19 @@ add_library(MinSG ${MinSG_SOURCES})

# Dependency to Geometry
if(NOT TARGET Geometry)
find_package(Geometry 0.2.0 REQUIRED NO_MODULE)
find_package(Geometry 0.3.0 REQUIRED NO_MODULE)
endif()
target_link_libraries(MinSG LINK_PUBLIC Geometry)

# Dependency to Rendering
if(NOT TARGET Rendering)
find_package(Rendering 0.2.0 REQUIRED NO_MODULE)
find_package(Rendering 0.3.0 REQUIRED NO_MODULE)
endif()
target_link_libraries(MinSG LINK_PUBLIC Rendering)

# Dependency to Util
if(NOT TARGET Util)
find_package(Util 0.2.0 REQUIRED NO_MODULE)
find_package(Util 0.3.0 REQUIRED NO_MODULE)
endif()
target_link_libraries(MinSG LINK_PUBLIC Util)

Expand Down Expand Up @@ -232,7 +233,7 @@ include(InstallRequiredSystemLibraries)

set(CPACK_PACKAGE_NAME "libminsg${MinSG_VERSION_MAJOR}")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "MinSG library")
set(CPACK_PACKAGE_VENDOR "Benjamin Eikel; Claudius Jaehn; Ralf Petring")
set(CPACK_PACKAGE_VENDOR "Benjamin Eikel; Claudius Jaehn; Ralf Petring; Sascha Brandt")
set(CPACK_PACKAGE_CONTACT "Benjamin Eikel <[email protected]>")
set(CPACK_PACKAGE_VERSION_MAJOR ${MinSG_VERSION_MAJOR})
set(CPACK_PACKAGE_VERSION_MINOR ${MinSG_VERSION_MINOR})
Expand Down
1 change: 1 addition & 0 deletions header.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Copyright (C) 2007-2012 Benjamin Eikel <[email protected]>
Copyright (C) 2007-2012 Claudius Jähn <[email protected]>
Copyright (C) 2007-2012 Ralf Petring <[email protected]>
Copyright (C) 2014-2019 Sascha Brandt <[email protected]>

This library is subject to the terms of the Mozilla Public License, v. 2.0.
You should have received a copy of the MPL along with this library; see the
Expand Down

0 comments on commit 5cb285f

Please sign in to comment.