2022-02-08 13:02:18 -08:00
|
|
|
if (${BUILD_STANDALONE} MATCHES "true")
|
|
|
|
message(STATUS "[standalone-build] ENABLED!")
|
2022-02-07 17:22:51 -08:00
|
|
|
|
2022-02-17 10:55:32 -08:00
|
|
|
set(BOOST_ROOT "/build/musikcube/vendor/bin")
|
|
|
|
set(BOOST_INCLUDEDIR "${CMAKE_CURRENT_SOURCE_DIR}/vendor/bin/include")
|
|
|
|
set(BOOST_LIBRARYDIR "${CMAKE_CURRENT_SOURCE_DIR}/vendor/bin/lib")
|
2022-02-07 17:22:51 -08:00
|
|
|
set(Boost_NO_SYSTEM_PATHS ON)
|
|
|
|
set(Boost_NO_BOOST_CMAKE ON)
|
|
|
|
|
2022-02-08 13:02:18 -08:00
|
|
|
list(
|
|
|
|
APPEND
|
|
|
|
VENDOR_INCLUDE_DIRECTORIES
|
2022-02-15 11:08:46 -08:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/vendor/bin/include")
|
2022-02-08 00:20:55 -08:00
|
|
|
|
|
|
|
list(
|
|
|
|
APPEND
|
|
|
|
VENDOR_LINK_DIRECTORIES
|
2022-02-15 11:08:46 -08:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/vendor/bin/lib")
|
|
|
|
|
2022-02-07 17:22:51 -08:00
|
|
|
else()
|
2022-02-08 13:02:18 -08:00
|
|
|
message(STATUS "[standalone-build] *NOT* enabled!")
|
2022-02-07 17:22:51 -08:00
|
|
|
endif()
|