mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 15:01:40 +00:00
10 lines
280 B
CMake
10 lines
280 B
CMake
|
include ( CheckCSourceCompiles )
|
||
|
if ( NOT SUPPORTS_VLA )
|
||
|
check_c_source_compiles (
|
||
|
"int main(int argc, char *argv[]){int arr[argc]; return 0;}"
|
||
|
_have_vla )
|
||
|
if ( _have_vla )
|
||
|
set ( SUPPORTS_VLA 1 )
|
||
|
endif ( _have_vla )
|
||
|
endif ( NOT SUPPORTS_VLA )
|