mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 12:49:54 +00:00
9 lines
231 B
CMake
9 lines
231 B
CMake
|
|
macro (add_openmw_dir dir)
|
|
set (files)
|
|
foreach (u ${ARGN})
|
|
list (APPEND files "${dir}/${u}.*")
|
|
list (APPEND OPENMW_FILES "${dir}/${u}")
|
|
endforeach (u)
|
|
source_group ("apps\\openmw\\${dir}" FILES ${files})
|
|
endmacro (add_openmw_dir)
|