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
344 B
15 lines
344 B
cmake_minimum_required(VERSION 3.1...3.20)
|
|
|
|
project(TestBasicPerl CXX)
|
|
|
|
include(CTest)
|
|
|
|
set(language "perl")
|
|
|
|
include (../BasicConfiguration.cmake)
|
|
|
|
add_test (NAME BasicPerl
|
|
COMMAND "${PERL_EXECUTABLE}" "-I${CMAKE_CURRENT_BINARY_DIR}"
|
|
"-I$<TARGET_FILE_DIR:example>"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/../runme.pl")
|