mirror of
https://github.com/moparisthebest/curl
synced 2024-11-04 08:35:05 -05:00
476499c75c
This change allows runtests.pl to be run from the CMake builddir: export srcdir=/tmp/curl/tests; perl -I$srcdir $srcdir/runtests.pl -l In order to make this possible, all test cases have been moved from Makefile.am to Makefile.inc. Signed-off-by: Peter Wu <peter@lekensteyn.nl>
8 lines
421 B
CMake
8 lines
421 B
CMake
# Loads 'TESTCASES' from for the 'make show' target in runtests.pl
|
|
transform_makefile_inc("Makefile.inc" "${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake")
|
|
include("${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake")
|
|
|
|
# Prints all available test cases. Do not quote TESTCASES, it must be displayed
|
|
# as a space-separated string rather than comma-separated (a list in CMake).
|
|
add_custom_target(show COMMAND echo ${TESTCASES})
|