3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 01:24:08 +00:00

[CMake] Python examples should only be copied over if python bindings

are being built.
This commit is contained in:
Dan Liew 2017-03-04 13:07:36 +00:00
parent 73614abf37
commit d9617841e0

View file

@ -1,4 +1,6 @@
add_subdirectory(c)
add_subdirectory(c++)
add_subdirectory(tptp)
add_subdirectory(python)
if (BUILD_PYTHON_BINDINGS)
add_subdirectory(python)
endif()