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.
15 lines
365 B
15 lines
365 B
6 years ago
|
cmake_minimum_required(VERSION 3.1)
|
||
|
|
||
|
project(TestLegacyPerl CXX)
|
||
|
|
||
|
include(CTest)
|
||
|
|
||
|
set(language "perl")
|
||
|
|
||
|
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")
|