Skip to content

Commit f320324

Browse files
Stefan Eilemanneile
authored andcommitted
Release preparations
1 parent 7dd98e6 commit f320324

16 files changed

+23
-347
lines changed

.gitexternals

Lines changed: 0 additions & 2 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ tests/client/configVisitor_objc.mm
4040
tests/image/images/out_*
4141
tt.*
4242
tt?.*
43-
CMake/common
4443
Lunchbox
4544
Pression
4645
Servus

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "CMake/common"]
2+
path = CMake/common
3+
url = https://github.com/Eyescale/CMake

.gitsubprojects

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# -*- mode: cmake -*-
2-
git_subproject(Servus https://github.com/HBPVIS/Servus.git 36180b5)
3-
git_subproject(Lunchbox https://github.com/Eyescale/Lunchbox.git f05b9c6)
4-
git_subproject(Pression https://github.com/Eyescale/Pression.git bde7574)
2+
git_subproject(Servus https://github.com/HBPVIS/Servus.git eee5765)
3+
git_subproject(Lunchbox https://github.com/Eyescale/Lunchbox.git 867f8d9)
4+
git_subproject(Pression https://github.com/Eyescale/Pression.git 08cd4bf)

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ before_install:
2121
script:
2222
- mkdir $BUILD_TYPE
2323
- cd $BUILD_TYPE
24-
- cmake -GNinja -DCMAKE_INSTALL_PREFIX=$PWD/install -DCMAKE_BUILD_TYPE=$BUILD_TYPE ..
24+
- cmake -GNinja -DCLONE_SUBPROJECTS=ON -DCMAKE_INSTALL_PREFIX=$PWD/install -DCMAKE_BUILD_TYPE=$BUILD_TYPE ..
2525
- ninja all && ninja $PROJECT_NAME-tests && ninja install

CMake/GitExternal.cmake

Lines changed: 0 additions & 325 deletions
This file was deleted.

CMake/common

Submodule common added at e1a5560

CMakeLists.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ project(Collage VERSION 1.7.0)
77
set(Collage_VERSION_ABI 7)
88

99
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMake
10-
${CMAKE_SOURCE_DIR}/CMake/common)
11-
12-
include(GitExternal)
10+
${CMAKE_SOURCE_DIR}/CMake/common)
11+
if(NOT EXISTS ${CMAKE_SOURCE_DIR}/CMake/common/Common.cmake)
12+
message(FATAL_ERROR "CMake/common missing, run: git submodule update --init")
13+
endif()
1314

1415
option(COLLAGE_BUILD_V2_API
1516
"Enable for pure 2.0 API (breaks compatibility with 1.x API)" OFF)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ environments are tested:
5555

5656
Building from source is as simple as:
5757

58-
git clone https://github.com/Eyescale/Collage.git
58+
git clone --recursive https://github.com/Eyescale/Collage.git
5959
mkdir Collage/build
6060
cd Collage/build
61-
cmake -GNinja ..
61+
cmake -GNinja .. -DCLONE_SUBPROJECTS=ON
6262
ninja

co/connection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ class Connection : public lunchbox::Referenced, public boost::noncopyable
203203
CO_API bool recvSync(BufferPtr& buffer, const bool block = true);
204204

205205
BufferPtr resetRecvData(); //!< @internal
206-
//@}
206+
//@}
207207

208208
/** @name Synchronous write to the connection */
209209
//@{

0 commit comments

Comments
 (0)