Skip to content

Commit 98a811d

Browse files
committed
added headers install to default built
1 parent a668847 commit 98a811d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

CMakeLists.txt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ endif(NOT CMAKE_BUILD_TYPE)
5151
# Set the version number of your project here (format is MAJOR.MINOR.PATCHLEVEL - e.g. 1.0.0)
5252
set(VERSION_MAJOR "1")
5353
set(VERSION_MINOR "0")
54-
set(VERSION_PATCH "4")
54+
set(VERSION_PATCH "5")
5555
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
5656

5757
# C++14
@@ -124,6 +124,13 @@ include_directories(
124124
${CMAKE_CURRENT_BINARY_DIR}/include include ${Boost_INCLUDE_DIRS} ${Common_INCLUDE_DIRS}
125125
)
126126

127+
set(HEADERS
128+
${CMAKE_CURRENT_BINARY_DIR}/include/${MODULE_NAME}/Version.h
129+
include/${MODULE_NAME}/InfoLogger.hxx
130+
include/${MODULE_NAME}/InfoLoggerFMQ.hxx
131+
include/${MODULE_NAME}/InfoLogger.h
132+
)
133+
127134
set(LIBRARY_NAME ${MODULE_NAME})
128135

129136
if(MYSQL_FOUND)
@@ -411,6 +418,7 @@ if(INFOLOGGER_BUILD_LIB)
411418
set(HEADERS
412419
${CMAKE_CURRENT_BINARY_DIR}/include/${MODULE_NAME}/Version.h
413420
include/${MODULE_NAME}/InfoLogger.hxx
421+
include/${MODULE_NAME}/InfoLoggerFMQ.hxx
414422
)
415423

416424
include_directories(

0 commit comments

Comments
 (0)