From 3e59dac3d8d5545a009eae37ecd891d0e2d418d2 Mon Sep 17 00:00:00 2001 From: Bill McCormick Date: Mon, 25 Mar 2019 08:08:36 -0500 Subject: [PATCH] backed out change to include/lib install dir location --- source/buildsupport/POSIX/OpENer_PLATFORM_INCLUDES.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/buildsupport/POSIX/OpENer_PLATFORM_INCLUDES.cmake b/source/buildsupport/POSIX/OpENer_PLATFORM_INCLUDES.cmake index b19fe73348..dbfa7a7672 100644 --- a/source/buildsupport/POSIX/OpENer_PLATFORM_INCLUDES.cmake +++ b/source/buildsupport/POSIX/OpENer_PLATFORM_INCLUDES.cmake @@ -2,10 +2,10 @@ macro(opener_platform_spec) include_directories(${PORTS_SRC_DIR}/${OpENer_PLATFORM} ${PORTS_SRC_DIR}/${OpENer_PLATFORM}/sample_application) set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -Werror=implicit-function-declaration" ) if(NOT CMAKE_INSTALL_LIBDIR) - set( CMAKE_INSTALL_LIBDIR "lib/OpENer") + set( CMAKE_INSTALL_LIBDIR "lib") endif() if(NOT CMAKE_INSTALL_INCLUDEDIR ) - set( CMAKE_INSTALL_INCLUDEDIR "include/OpENer") + set( CMAKE_INSTALL_INCLUDEDIR "include") endif() add_definitions( -D_POSIX_C_SOURCE=200112L -D__USE_GNU -D__USE_XOPEN2K -DOPENER_POSIX) get_property(languages GLOBAL PROPERTY ENABLED_LANGUAGES)