The branch, master, has been updated. - Log -----------------------------------------------------------------
commit 1dcb70a12f82ab6c3d1b64507ad68c23fce1c277 Author: Stephan Witt <[email protected]> Date: Thu Dec 13 20:54:05 2012 +0100 guard autotests with X11 window system check result diff --git a/CMakeLists.txt b/CMakeLists.txt index 61777ef..0b2fd24 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -716,7 +716,10 @@ if(LYX_INSTALL) endif() add_subdirectory(sourcedoc "${TOP_BINARY_DIR}/sourcedoc") -add_subdirectory(development/autotests "${TOP_BINARY_DIR}/autotests") +if(Q_WS_X11) + message(STATUS "Adding auto test...") + add_subdirectory(development/autotests "${TOP_BINARY_DIR}/autotests") +endif() message(STATUS) message(STATUS "Build options, switch LYX_* variables by -DLYX_*=ON or OFF:") ----------------------------------------------------------------------- Summary of changes: CMakeLists.txt | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) hooks/post-receive -- The LyX Source Repository
