-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from eile/master
Release preparations
- Loading branch information
Showing
10 changed files
with
38 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# -*- mode: cmake -*- | ||
# CMake/common https://github.com/Eyescale/CMake.git 4b328e4 | ||
# CMake/common https://github.com/Eyescale/CMake.git b158c68 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# -*- mode: cmake -*- | ||
git_subproject(Lunchbox https://github.com/Eyescale/Lunchbox.git 33546f1) | ||
git_subproject(Lunchbox https://github.com/Eyescale/Lunchbox.git 01caa15) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,13 +5,8 @@ | |
mark_as_advanced(PRESSION_PACKAGE_VERSION) | ||
|
||
set(CPACK_PACKAGE_VENDOR "www.eyescale.ch") | ||
set(CPACK_PACKAGE_CONTACT "Stefan Eilemann <[email protected]>") | ||
set(CPACK_PACKAGE_LICENSE "LGPL") | ||
#set(CPACK_PACKAGE_DESCRIPTION_FILE ${PROJECT_SOURCE_DIR}/doc/RelNotes.md) | ||
#set(CPACK_RESOURCE_FILE_README ${PROJECT_SOURCE_DIR}/doc/RelNotes.md) | ||
|
||
set(CPACK_DEBIAN_PACKAGE_DEPENDS | ||
"libstdc++6, libturbojpeg") | ||
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libstdc++6, libturbojpeg") | ||
|
||
set(CPACK_MACPORTS_CATEGORY devel) | ||
set(CPACK_MACPORTS_DEPENDS Lunchbox) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,14 +10,16 @@ list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMake | |
include(GitExternal) | ||
|
||
set(VERSION_MAJOR "1") | ||
set(VERSION_MINOR "0") | ||
set(VERSION_MINOR "1") | ||
set(VERSION_PATCH "0") | ||
set(VERSION_ABI 1) | ||
set(VERSION_ABI 2) | ||
|
||
set(GITTARGETS_RELEASE_BRANCH minor) | ||
set(DPUT_HOST "ppa:eilemann/equalizer-dev") | ||
|
||
set(PRESSION_DESCRIPTION "Compressor, decompressor, uploader and downloader plugins") | ||
set(PRESSION_MAINTAINER "Stefan Eilemann <[email protected]>") | ||
set(PRESSION_LICENSE LGPL) | ||
set(COMMON_PROJECT_DOMAIN ch.eyescale) | ||
|
||
include(Common) | ||
|
@@ -47,7 +49,7 @@ add_subdirectory(doc) | |
set(DOXYGEN_MAINPAGE_MD README.md) | ||
set(DOXYGEN_EXTRA_INPUT ${PROJECT_SOURCE_DIR}/README.md) | ||
include(DoxygenRule) # must be after all targets | ||
include(PressionCPack) | ||
include(CPackConfig) | ||
|
||
set(CTEST_CUSTOM_WARNING_EXCEPTION ${CTEST_CUSTOM_WARNING_EXCEPTION} | ||
# http://public.kitware.com/Bug/view.php?id=10179 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,13 @@ | |
# Introduction {#Introduction} | ||
|
||
Welcome to Pression, a C++ library for implementing and loading | ||
compression and CPU-GPU data transfer plugins | ||
compression and CPU-GPU data transfer plugins. | ||
|
||
The | ||
[API documentation](http://eyescale.github.io/Pression-1.0/index.html) can be | ||
[API documentation](http://eyescale.github.io/Pression-1.1/index.html) can be | ||
found on [eyescale.github.io](http://eyescale.github.io/). As with any open | ||
source project, the available source code, in particular the | ||
[unit tests](https://github.com/Eyescale/Pression/tree/1.0/tests) provide a | ||
[unit tests](https://github.com/Eyescale/Pression/tree/1.1/tests) provide a | ||
reference for developing applications. | ||
|
||
Technical questions can be posted to the Equalizer | ||
|
@@ -22,6 +22,15 @@ available from [Eyescale](http://www.eyescale.ch). Please contact | |
[[email protected]](mailto:[email protected]?subject=Pression%20support) | ||
for further information. | ||
|
||
# Features {#Features} | ||
|
||
Pression provides the following major features: | ||
|
||
* Compression and CPU-GPU transfer plugin handling: pression::Compressor, | ||
pression::Decompressor, pression::Downloader, pression::Plugin, | ||
pression::PluginRegistry, pression::Uploader | ||
* Detailed @ref Changelog | ||
|
||
# Building {#Building} | ||
|
||
Pression is a cross-platform library, designed to run on any modern | ||
|
@@ -33,17 +42,11 @@ environment. The following platforms and build environments are tested: | |
* Windows: 7 (Visual Studio 2012) | ||
* Mac OS X: 10.8 (Makefile, Ninja) | ||
|
||
~~~ | ||
git clone https://github.com/Eyescale/Pression.git | ||
cd Pression | ||
mkdir build | ||
cd build | ||
cmake .. | ||
make | ||
~~~ | ||
|
||
# Changes {#Changes} | ||
Building from source is as simple as: | ||
|
||
## Version 1.0 {#Version10} | ||
|
||
* Initial release as a separate project from Lunchbox | ||
git clone https://github.com/Eyescale/Pression.git | ||
mkdir Pression/build | ||
cd Pression/build | ||
cmake .. | ||
make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
# Copyright (c) 2012 Stefan Eilemann <[email protected]> | ||
|
||
install(FILES RelNotes.md ../AUTHORS.txt ../ACKNOWLEDGEMENTS.txt ../LGPL.txt | ||
../LICENSE.txt DESTINATION ${DOC_DIR} COMPONENT doc) | ||
install(FILES ../ACKNOWLEDGEMENTS.txt ../LGPL.txt ../LICENSE.txt | ||
DESTINATION ${DOC_DIR} COMPONENT doc) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Changelog {#Changelog} | ||
|
||
|
||
# Version 1.1 (2-Nov-2015) | ||
|
||
* Removed dependency to boost | ||
|
||
# Version 1.0 (8-Jul-2015) | ||
|
||
* Initial release as a separate project from Lunchbox |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters