cmake: add missing ${...} for variables inside generator expressions
This commit is contained in:
parent
ae42267cc7
commit
80ed0f03ac
|
@ -23,7 +23,7 @@ add_library(audio_core STATIC
|
|||
time_stretch.cpp
|
||||
time_stretch.h
|
||||
|
||||
$<$<BOOL:SDL2_FOUND>:sdl2_sink.cpp sdl2_sink.h>
|
||||
$<$<BOOL:${SDL2_FOUND}>:sdl2_sink.cpp sdl2_sink.h>
|
||||
)
|
||||
|
||||
create_target_directory_groups(audio_core)
|
||||
|
|
|
@ -8,7 +8,7 @@ add_library(input_common STATIC
|
|||
motion_emu.cpp
|
||||
motion_emu.h
|
||||
|
||||
$<$<BOOL:SDL2_FOUND>:sdl/sdl.cpp sdl/sdl.h>
|
||||
$<$<BOOL:${SDL2_FOUND}>:sdl/sdl.cpp sdl/sdl.h>
|
||||
)
|
||||
|
||||
create_target_directory_groups(input_common)
|
||||
|
|
Reference in New Issue