You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
227 B
CMake
10 lines
227 B
CMake
13 years ago
|
|
||
|
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)
|