From ea968f273fe3a0519829b18c67355bb2079f17b6 Mon Sep 17 00:00:00 2001 From: Phillip Smith Date: Tue, 24 Oct 2017 22:29:16 -0700 Subject: [PATCH] Publish headers needed for clients to consume --- src/xPlatAppx/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/xPlatAppx/CMakeLists.txt b/src/xPlatAppx/CMakeLists.txt index 25039237..7c8293e1 100644 --- a/src/xPlatAppx/CMakeLists.txt +++ b/src/xPlatAppx/CMakeLists.txt @@ -58,6 +58,10 @@ set(LIB_SOURCES ${DirectoryObject} ) +# Copy out public headers + configure_file(../inc/xPlatAppx.hpp ${CMAKE_CURRENT_BINARY_DIR}/xPlatAppx.hpp ) + configure_file(../inc/AppxWindows.hpp ${CMAKE_CURRENT_BINARY_DIR}/AppxWindows.hpp ) + configure_file(../inc/AppxPackaging.hpp ${CMAKE_CURRENT_BINARY_DIR}/AppxPackaging.hpp) # Define the library add_library(${LIBRARY_NAME} SHARED ${LIB_SOURCES} ${LIB_PUBLIC_HEADERS} ${LIB_PRIVATE_HEADERS})