You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
400 B
17 lines
400 B
cmake_minimum_required(VERSION 3.1)
|
|
|
|
project(TestLegacyPerl CXX)
|
|
|
|
include(CTest)
|
|
|
|
if(NOT DEFINED language)
|
|
set(language "perl")
|
|
endif()
|
|
|
|
include (../LegacyConfiguration.cmake)
|
|
|
|
add_test (NAME LegacyPerl
|
|
COMMAND "${PERL_EXECUTABLE}" "-I${CMAKE_CURRENT_BINARY_DIR}"
|
|
"-I$<TARGET_FILE_DIR:${SWIG_MODULE_example_REAL_NAME}>"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/../runme.pl")
|