mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 06:51:54 +00:00
Fix emscripten: Append CMAKE_MODULE_PATH instead of overwriting it
Emscripten adds a custom CMAKE_MODULE_PATH in the toolchain file. Without these modules TestBigEndian fails.
This commit is contained in:
parent
4240d31e51
commit
475f902584
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ if(POLICY CMP0091)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
project ( FluidSynth C CXX )
|
project ( FluidSynth C CXX )
|
||||||
set ( CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake_admin )
|
list( APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake_admin )
|
||||||
|
|
||||||
# FluidSynth package name
|
# FluidSynth package name
|
||||||
set ( PACKAGE "fluidsynth" )
|
set ( PACKAGE "fluidsynth" )
|
||||||
|
|
Loading…
Reference in a new issue