mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 03:19:33 +02:00
build portaudio from same directory as source
This commit is contained in:
parent
b45286c6e5
commit
8fb58221d0
1 changed files with 3 additions and 1 deletions
|
@ -35,9 +35,11 @@ target_link_libraries(interface
|
||||||
)
|
)
|
||||||
|
|
||||||
include(ExternalProject)
|
include(ExternalProject)
|
||||||
|
set(PORTAUDIO_PROJ_DIR external/portaudio)
|
||||||
ExternalProject_Add(
|
ExternalProject_Add(
|
||||||
portaudio
|
portaudio
|
||||||
PREFIX external/portaudio
|
PREFIX ${PORTAUDIO_PROJ_DIR}
|
||||||
|
BINARY_DIR ${PORTAUDIO_PROJ_DIR}/src/portaudio
|
||||||
URL ${PORTAUDIO_DIR}/pa_snapshot_020813.tgz
|
URL ${PORTAUDIO_DIR}/pa_snapshot_020813.tgz
|
||||||
CONFIGURE_COMMAND <SOURCE_DIR>/configure
|
CONFIGURE_COMMAND <SOURCE_DIR>/configure
|
||||||
BUILD_COMMAND make
|
BUILD_COMMAND make
|
||||||
|
|
Loading…
Reference in a new issue