-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
24 additions
and
344 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -19,7 +19,6 @@ GTAGS | |
auxiliary/ | ||
build/ | ||
CMakeLists.txt.user* | ||
CMake/common | ||
Makefile | ||
Collage/ | ||
Deflect/ | ||
|
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,3 @@ | ||
[submodule "CMake/common"] | ||
path = CMake/common | ||
url = https://github.com/Eyescale/CMake.git |
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,9 +1,9 @@ | ||
# -*- mode: cmake -*- | ||
git_subproject(vmmlib https://github.com/Eyescale/vmmlib.git 126533c) | ||
git_subproject(Servus https://github.com/HBPVIS/Servus 36180b5) | ||
git_subproject(Lunchbox https://github.com/Eyescale/Lunchbox.git f05b9c6) | ||
git_subproject(Pression https://github.com/Eyescale/Pression.git ae3dded) | ||
git_subproject(hwsd https://github.com/Eyescale/hwsd.git 2898f91) | ||
git_subproject(Collage https://github.com/Eyescale/Collage.git 206860e) | ||
git_subproject(GLStats https://github.com/Eyescale/GLStats.git 836dd5e) | ||
git_subproject(Deflect https://github.com/BlueBrain/Deflect.git 6c3d21c) | ||
git_subproject(vmmlib https://github.com/Eyescale/vmmlib.git 2635f7f) | ||
git_subproject(Servus https://github.com/HBPVIS/Servus eee5765) | ||
git_subproject(Lunchbox https://github.com/Eyescale/Lunchbox.git 867f8d9) | ||
git_subproject(Pression https://github.com/Eyescale/Pression.git 08cd4bf) | ||
git_subproject(hwsd https://github.com/Eyescale/hwsd.git 03b6581) | ||
git_subproject(Collage https://github.com/Eyescale/Collage.git f320324) | ||
git_subproject(GLStats https://github.com/Eyescale/GLStats.git f9bf19e) | ||
git_subproject(Deflect https://github.com/BlueBrain/Deflect.git 0d10736) |
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
# Copyright (c) 2010-2016 Stefan Eilemann <[email protected]> | ||
# Copyright (c) 2010-2017 Stefan Eilemann <[email protected]> | ||
# Daniel Pfeifer <[email protected]> | ||
|
||
cmake_minimum_required(VERSION 3.1 FATAL_ERROR) | ||
|
@@ -8,7 +8,9 @@ set(Equalizer_VERSION_ABI 210) | |
|
||
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMake | ||
${CMAKE_SOURCE_DIR}/CMake/common) | ||
include(GitExternal) | ||
if(NOT EXISTS ${CMAKE_SOURCE_DIR}/CMake/common/Common.cmake) | ||
message(FATAL_ERROR "CMake/common missing, run: git submodule update --init") | ||
endif() | ||
|
||
set(EQUALIZER_INCLUDE_NAME eq) | ||
set(EQUALIZER_DEB_DEPENDS bison flex libboost-program-options-dev | ||
|
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
Oops, something went wrong.