From ea76d6de9590c0410345b93c86d2bea448cf200e Mon Sep 17 00:00:00 2001 From: Kornel Benko Date: Mon, 30 Jul 2012 10:04:45 +0200 Subject: [PATCH] Roundtrip tex2lyx, cmake-build: 1.) test.ltx, test.lyx.tex in build-dir (missed this one in previous commit) 2.) Added dependency to "lyx" to work on clean build dir too --- src/tex2lyx/test/CMakeLists.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/tex2lyx/test/CMakeLists.txt b/src/tex2lyx/test/CMakeLists.txt index 19abf65aff..196a1937cf 100644 --- a/src/tex2lyx/test/CMakeLists.txt +++ b/src/tex2lyx/test/CMakeLists.txt @@ -6,8 +6,8 @@ project(test) -set(_test_depend "${TOP_SRC_DIR}/src/tex2lyx/test/test.ltx") -set(_test_output "${TOP_SRC_DIR}/src/tex2lyx/test/test.lyx.tex") +set(_test_depend "${CMAKE_CURRENT_BINARY_DIR}/test.ltx") +set(_test_output "${CMAKE_CURRENT_BINARY_DIR}/test.lyx.tex") foreach(_arg runtests.py DummyDocument.tex test.ltx foo.eps foo.png) configure_file("${TOP_SRC_DIR}/src/tex2lyx/test/${_arg}" "${CMAKE_CURRENT_BINARY_DIR}/${_arg}" COPYONLY) endforeach(_arg) @@ -29,7 +29,8 @@ ADD_CUSTOM_COMMAND( ARGS "${CMAKE_CURRENT_BINARY_DIR}/runtests.py" "${TOP_BINARY_DIR}/bin/${_tex2lyx}" "${TOP_SRC_DIR}/lib/scripts" WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" DEPENDS ${_tex2lyx} ${_test_depend} + COMMENT "${LYX_PYTHON_EXECUTABLE}" "${CMAKE_CURRENT_BINARY_DIR}/runtests.py" "${TOP_BINARY_DIR}/bin/${_tex2lyx}" "${TOP_SRC_DIR}/lib/scripts" ) -ADD_CUSTOM_TARGET(test DEPENDS ${_tex2lyx} ${_test_output}) +ADD_CUSTOM_TARGET(test DEPENDS ${_tex2lyx} ${_lyx} ${_test_output}) -- 2.39.2