Skip to content

Commit

Permalink
Release preparations
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Eilemann authored and eile committed May 29, 2017
1 parent 7dd98e6 commit f320324
Show file tree
Hide file tree
Showing 16 changed files with 23 additions and 347 deletions.
2 changes: 0 additions & 2 deletions .gitexternals

This file was deleted.

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ tests/client/configVisitor_objc.mm
tests/image/images/out_*
tt.*
tt?.*
CMake/common
Lunchbox
Pression
Servus
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "CMake/common"]
path = CMake/common
url = https://github.com/Eyescale/CMake
6 changes: 3 additions & 3 deletions .gitsubprojects
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- mode: cmake -*-
git_subproject(Servus https://github.com/HBPVIS/Servus.git 36180b5)
git_subproject(Lunchbox https://github.com/Eyescale/Lunchbox.git f05b9c6)
git_subproject(Pression https://github.com/Eyescale/Pression.git bde7574)
git_subproject(Servus https://github.com/HBPVIS/Servus.git eee5765)
git_subproject(Lunchbox https://github.com/Eyescale/Lunchbox.git 867f8d9)
git_subproject(Pression https://github.com/Eyescale/Pression.git 08cd4bf)
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ before_install:
script:
- mkdir $BUILD_TYPE
- cd $BUILD_TYPE
- cmake -GNinja -DCMAKE_INSTALL_PREFIX=$PWD/install -DCMAKE_BUILD_TYPE=$BUILD_TYPE ..
- cmake -GNinja -DCLONE_SUBPROJECTS=ON -DCMAKE_INSTALL_PREFIX=$PWD/install -DCMAKE_BUILD_TYPE=$BUILD_TYPE ..
- ninja all && ninja $PROJECT_NAME-tests && ninja install
325 changes: 0 additions & 325 deletions CMake/GitExternal.cmake

This file was deleted.

1 change: 1 addition & 0 deletions CMake/common
Submodule common added at e1a556
7 changes: 4 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ project(Collage VERSION 1.7.0)
set(Collage_VERSION_ABI 7)

list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMake
${CMAKE_SOURCE_DIR}/CMake/common)

include(GitExternal)
${CMAKE_SOURCE_DIR}/CMake/common)
if(NOT EXISTS ${CMAKE_SOURCE_DIR}/CMake/common/Common.cmake)
message(FATAL_ERROR "CMake/common missing, run: git submodule update --init")
endif()

option(COLLAGE_BUILD_V2_API
"Enable for pure 2.0 API (breaks compatibility with 1.x API)" OFF)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ environments are tested:

Building from source is as simple as:

git clone https://github.com/Eyescale/Collage.git
git clone --recursive https://github.com/Eyescale/Collage.git
mkdir Collage/build
cd Collage/build
cmake -GNinja ..
cmake -GNinja .. -DCLONE_SUBPROJECTS=ON
ninja
2 changes: 1 addition & 1 deletion co/connection.h
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ class Connection : public lunchbox::Referenced, public boost::noncopyable
CO_API bool recvSync(BufferPtr& buffer, const bool block = true);

BufferPtr resetRecvData(); //!< @internal
//@}
//@}

/** @name Synchronous write to the connection */
//@{
Expand Down
1 change: 0 additions & 1 deletion co/connectionSet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ class ConnectionSet : public ConnectionListener
}

void interrupt() { selfConnection->set(); }

private:
virtual void notifyStateChanged(co::Connection*) { setDirty(); }
};
Expand Down
Loading

0 comments on commit f320324

Please sign in to comment.