mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 14:37:25 +00:00
11 lines
330 B
CMake
11 lines
330 B
CMake
|
set(COMPONENT_TEST_DATA
|
||
|
"test_xml_data.xml"
|
||
|
)
|
||
|
|
||
|
# Get the folder name and prepend it to the files above
|
||
|
get_filename_component(thisFolderName ${CMAKE_CURRENT_SOURCE_DIR} NAME)
|
||
|
list(TRANSFORM COMPONENT_TEST_DATA PREPEND "${thisFolderName}/")
|
||
|
|
||
|
# Export our list of files
|
||
|
set(COMPONENT_TEST_DATA ${COMPONENT_TEST_DATA} PARENT_SCOPE)
|