zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit 216a6e20878180ef6a9fac459689763983676b15
parent a140fcec71eb3cb1b69b9e31e3c5eb4332f825d3
Author: fundamental <mark.d.mccurry@gmail.com>
Date:   Wed, 24 Oct 2012 10:58:04 -0400

Cmake: forces CXXTEST to use python

- Should fix errors of finding perl with some versions of cmake and some
  versions of cxxtest

Diffstat:
Msrc/CMakeLists.txt | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt @@ -16,6 +16,9 @@ set(FLTK_SKIP_OPENGL true) find_package(FLTK) find_package(OpenGL) #for FLTK find_package(CxxTest) +if(CXXTEST_FOUND) + set(CXXTEST_USE_PYTHON TRUE) +endif() # lash pkg_search_module(LASH lash-1.0) mark_as_advanced(LASH_LIBRARIES)