Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.1.3)
cmake_minimum_required(VERSION 3.5)
project(sciunit2-deps NONE)

include(ExternalProject)
Expand All @@ -10,21 +10,21 @@ set(_FILES_DIR ${CMAKE_SOURCE_DIR}/files)
ExternalProject_Add(
ptu
GIT_REPOSITORY "https://github.com/depaul-dice/provenance-to-use"
CMAKE_ARGS -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} -DBUILD_TESTING=OFF
CMAKE_ARGS -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} -DBUILD_TESTING=OFF -DCMAKE_POLICY_VERSION_MINIMUM=3.5
INSTALL_COMMAND install -s <BINARY_DIR>/ptu ${_LIBEXEC_DIR}
)

ExternalProject_Add(
scripter
GIT_REPOSITORY "https://github.com/depaul-dice/scripter"
CMAKE_ARGS -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
CMAKE_ARGS -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} -DCMAKE_POLICY_VERSION_MINIMUM=3.5
INSTALL_COMMAND install -s <BINARY_DIR>/scripter ${_LIBEXEC_DIR}
)

ExternalProject_Add(
vvpkg
GIT_REPOSITORY "https://github.com/depaul-dice/sciunit-dedup"
CMAKE_ARGS -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
CMAKE_ARGS -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} -DCMAKE_POLICY_VERSION_MINIMUM=3.5
INSTALL_COMMAND install -s <BINARY_DIR>/demo/vv ${_LIBEXEC_DIR}
TEST_COMMAND <BINARY_DIR>/tests/run
)
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ class BuildCommand(build_py):
def run(self):
subprocess.check_call(['cmake', '-DCMAKE_BUILD_TYPE=Release'])
subprocess.check_call(['make', '-j4'])
subprocess.call(['apt-get', 'update'])
build_py.run(self)
_build_manpage('docs/sciunit.1.rst', 'sciunit.1.gz')

Expand Down
Loading