mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
11 lines
301 B
CMake
11 lines
301 B
CMake
|
set(DENUMS_TESTS
|
||
|
"MagicEnumTests.cpp"
|
||
|
)
|
||
|
|
||
|
# Get the folder name and prepend it to the files above
|
||
|
get_filename_component(thisFolderName ${CMAKE_CURRENT_SOURCE_DIR} NAME)
|
||
|
list(TRANSFORM DENUMS_TESTS PREPEND "${thisFolderName}/")
|
||
|
|
||
|
# Export to parent scope
|
||
|
set(DENUMS_TESTS ${DENUMS_TESTS} PARENT_SCOPE)
|