Add muParser headers to CMake build

Enables these headers to show up in IDEs.
This commit is contained in:
ridiculousfish 2017-11-16 12:51:16 -08:00
parent 1014995159
commit 043631fd18

View file

@ -10,3 +10,6 @@ SET(MUPARSER_SRCS
ADD_LIBRARY(muparser STATIC ${MUPARSER_SRCS})
TARGET_INCLUDE_DIRECTORIES(muparser PUBLIC ${CMAKE_CURRENT_LIST_DIR}/include)
FILE(GLOB MUPARSER_HEADERS ${CMAKE_CURRENT_LIST_DIR}/include/*.h)
TARGET_SOURCES(muparser PRIVATE ${MUPARSER_HEADERS})