From f112a17de646008ae8d930a97023c8864bca5c37 Mon Sep 17 00:00:00 2001 From: Marcelo Lira Date: Tue, 25 Jan 2011 08:41:42 -0300 Subject: Test bindings now use project files instead of generator command line options. --- tests/otherbinding/CMakeLists.txt | 15 ++++++--------- tests/otherbinding/other-binding.xml.in | 23 +++++++++++++++++++++++ tests/samplebinding/CMakeLists.txt | 15 +++++---------- tests/samplebinding/sample-binding.xml.in | 21 +++++++++++++++++++++ 4 files changed, 55 insertions(+), 19 deletions(-) create mode 100644 tests/otherbinding/other-binding.xml.in create mode 100644 tests/samplebinding/sample-binding.xml.in diff --git a/tests/otherbinding/CMakeLists.txt b/tests/otherbinding/CMakeLists.txt index 9b14fae4e..e8b89eb5c 100644 --- a/tests/otherbinding/CMakeLists.txt +++ b/tests/otherbinding/CMakeLists.txt @@ -13,17 +13,14 @@ ${CMAKE_CURRENT_BINARY_DIR}/other/otherobjecttype_wrapper.cpp ${CMAKE_CURRENT_BINARY_DIR}/other/other_module_wrapper.cpp ) + +configure_file("${CMAKE_CURRENT_SOURCE_DIR}/other-binding.xml.in" + "${CMAKE_CURRENT_BINARY_DIR}/other-binding.xml" @ONLY) + add_custom_command(OUTPUT ${other_SRC} -COMMAND ${GENERATORRUNNER_BINARY} - --generator-set=${generators_BINARY_DIR}/shiboken_generator${CMAKE_RELEASE_POSTFIX}${CMAKE_DEBUG_POSTFIX}${CMAKE_SHARED_LIBRARY_SUFFIX} - --enable-parent-ctor-heuristic - ${CMAKE_CURRENT_SOURCE_DIR}/global.h - --include-paths=${libother_SOURCE_DIR}${PATH_SEP}${libsample_SOURCE_DIR}${PATH_SEP}${libsample_SOURCE_DIR}/.. - --typesystem-paths=${CMAKE_CURRENT_SOURCE_DIR}${PATH_SEP}${sample_SOURCE_DIR} - --output-directory=${CMAKE_CURRENT_BINARY_DIR} - ${other_TYPESYSTEM} +COMMAND ${GENERATORRUNNER_BINARY} --project-file=${CMAKE_CURRENT_BINARY_DIR}/other-binding.xml WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} -COMMENT "Running generator for test binding..." +COMMENT "Running generator for 'other' test binding..." ) include_directories(${CMAKE_CURRENT_SOURCE_DIR} diff --git a/tests/otherbinding/other-binding.xml.in b/tests/otherbinding/other-binding.xml.in new file mode 100644 index 000000000..446049ac7 --- /dev/null +++ b/tests/otherbinding/other-binding.xml.in @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/samplebinding/CMakeLists.txt b/tests/samplebinding/CMakeLists.txt index 2c2623d6c..b0908d8c9 100644 --- a/tests/samplebinding/CMakeLists.txt +++ b/tests/samplebinding/CMakeLists.txt @@ -87,18 +87,13 @@ ${CMAKE_CURRENT_BINARY_DIR}/sample/voidholder_wrapper.cpp ${CMAKE_CURRENT_BINARY_DIR}/sample/valueandvirtual_wrapper.cpp ) +configure_file("${CMAKE_CURRENT_SOURCE_DIR}/sample-binding.xml.in" + "${CMAKE_CURRENT_BINARY_DIR}/sample-binding.xml" @ONLY) + add_custom_command(OUTPUT ${sample_SRC} -COMMAND ${GENERATORRUNNER_BINARY} - --generator-set=${generators_BINARY_DIR}/shiboken_generator${CMAKE_RELEASE_POSTFIX}${CMAKE_DEBUG_POSTFIX}${CMAKE_SHARED_LIBRARY_SUFFIX} - --enable-parent-ctor-heuristic - --use-isnull-as-nb_nonzero - ${CMAKE_CURRENT_SOURCE_DIR}/global.h - --include-paths=${libsample_SOURCE_DIR} - --typesystem-paths=${CMAKE_CURRENT_SOURCE_DIR} - --output-directory=${CMAKE_CURRENT_BINARY_DIR} - ${sample_TYPESYSTEM} +COMMAND ${GENERATORRUNNER_BINARY} --project-file=${CMAKE_CURRENT_BINARY_DIR}/sample-binding.xml WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} -COMMENT "Running generator for test binding..." +COMMENT "Running generator for 'sample' test binding..." ) include_directories(${CMAKE_CURRENT_SOURCE_DIR} diff --git a/tests/samplebinding/sample-binding.xml.in b/tests/samplebinding/sample-binding.xml.in new file mode 100644 index 000000000..207821c99 --- /dev/null +++ b/tests/samplebinding/sample-binding.xml.in @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3