Files
OpenSpace/support/jenkins/buildNoModules.py
2016-08-01 14:06:46 +02:00

13 lines
285 B
Python

import os
from subprocess import call
# To be called from the build folder in the OpenSpace
modules = os.listdir("../modules")
cmd = ["cmake"]
cmd.append("-DGHOUL_USE_DEVIL=OFF")
for m in modules:
cmd.append("-DOPENSPACE_MODULE_" + m.upper() + "=OFF")
cmd.append("..")
call(cmd)