mirror of
https://github.com/starr-dusT/tzdb_to_nx
synced 2024-03-05 21:18:52 -08:00
10 lines
304 B
CMake
10 lines
304 B
CMake
![]() |
set(WITH_DIRECTORIES ${CMAKE_ARGV3})
|
||
|
set(RECURSE ${CMAKE_ARGV4})
|
||
|
|
||
|
set(HOW_TO_GLOB "GLOB")
|
||
|
if (RECURSE)
|
||
|
set(HOW_TO_GLOB "GLOB_RECURSE")
|
||
|
endif()
|
||
|
|
||
|
file(GLOB FILE_LIST LIST_DIRECTORIES ${WITH_DIRECTORIES} RELATIVE ${CMAKE_SOURCE_DIR} "*")
|
||
|
execute_process(COMMAND ${CMAKE_COMMAND} -E echo "${FILE_LIST};")
|