mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-10-13 10:58:07 +00:00

* LXFML SPLITTING Included test file * move base to global namespace * wip need to test * update last fixes * update world sending bbb to be more efficient * Address feedback form Emo in doscord * Make LXFML class for robust and add more tests to edge cases and malformed data * get rid of the string copy and make the deep clone have a recursive limit * cleanup tests * fix test file locations * fix file path * KISS * add cmakelists * fix typos * NL @ EOF * tabs and split out to func * naming standard
19 lines
538 B
CMake
19 lines
538 B
CMake
set(LXFMLTESTFILES
|
|
"deeply_nested.lxfml"
|
|
"empty_transform.lxfml"
|
|
"invalid_transform.lxfml"
|
|
"mixed_invalid_transform.lxfml"
|
|
"mixed_valid_invalid.lxfml"
|
|
"non_numeric_transform.lxfml"
|
|
"no_bricks.lxfml"
|
|
"test.lxfml"
|
|
"too_few_values.lxfml"
|
|
)
|
|
|
|
# Get the folder name and prepend it to the files above
|
|
get_filename_component(thisFolderName ${CMAKE_CURRENT_SOURCE_DIR} NAME)
|
|
list(TRANSFORM LXFMLTESTFILES PREPEND "${thisFolderName}/")
|
|
|
|
# Export our list of files
|
|
set(LXFMLTESTFILES ${LXFMLTESTFILES} PARENT_SCOPE)
|