From e9587d90c4c6902e92c335ff6d1980bd6098515f Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Tue, 9 Jun 2015 01:50:32 -0700 Subject: [PATCH] Trying to fix linux build --- cmake/externals/boostconfig/CMakeLists.txt | 14 +++++++------- libraries/shared/CMakeLists.txt | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/cmake/externals/boostconfig/CMakeLists.txt b/cmake/externals/boostconfig/CMakeLists.txt index 8785e0d7c7..8494bb0114 100644 --- a/cmake/externals/boostconfig/CMakeLists.txt +++ b/cmake/externals/boostconfig/CMakeLists.txt @@ -3,13 +3,13 @@ string(TOUPPER ${EXTERNAL_NAME} EXTERNAL_NAME_UPPER) include(ExternalProject) ExternalProject_Add( - ${EXTERNAL_NAME} - URL https://github.com/boostorg/config/archive/boost-1.58.0.zip - URL_MD5 42fa673bae2b7645a22736445e80eb8d - CONFIGURE_COMMAND "" - BUILD_COMMAND "" - INSTALL_COMMAND "" - LOG_DOWNLOAD 1 + ${EXTERNAL_NAME} + URL https://github.com/boostorg/config/archive/boost-1.58.0.zip + URL_MD5 42fa673bae2b7645a22736445e80eb8d + CONFIGURE_COMMAND "" + BUILD_COMMAND "" + INSTALL_COMMAND "" + LOG_DOWNLOAD 1 ) ExternalProject_Get_Property(${EXTERNAL_NAME} SOURCE_DIR) diff --git a/libraries/shared/CMakeLists.txt b/libraries/shared/CMakeLists.txt index 6f7efd1b40..cac8de2ced 100644 --- a/libraries/shared/CMakeLists.txt +++ b/libraries/shared/CMakeLists.txt @@ -11,7 +11,7 @@ find_package(GLM REQUIRED) target_include_directories(${TARGET_NAME} PUBLIC ${GLM_INCLUDE_DIRS}) add_dependency_external_projects(boostconfig) -find_package(BOOSTCONFIG REQUIRED) +find_package(BoostConfig REQUIRED) target_include_directories(${TARGET_NAME} PUBLIC ${BOOSTCONFIG_INCLUDE_DIRS}) add_dependency_external_projects(oglplus)