Commit 9e179c37 authored by Patrik Huber's avatar Patrik Huber

Updated source_group syntax

parent 44ae0696
...@@ -141,13 +141,14 @@ include_directories(${eigen3_nnls_INCLUDE_DIR}) ...@@ -141,13 +141,14 @@ include_directories(${eigen3_nnls_INCLUDE_DIR})
# Custom target for the library, to make the headers show up in IDEs: # Custom target for the library, to make the headers show up in IDEs:
add_custom_target(eos SOURCES ${HEADERS}) add_custom_target(eos SOURCES ${HEADERS})
source_group(core include/eos/core/*) source_group(core REGULAR_EXPRESSION include/eos/core/*)
source_group(morphablemodel include/eos/morphablemodel/*) source_group(morphablemodel REGULAR_EXPRESSION include/eos/morphablemodel/*)
source_group(morphablemodel\\io include/eos/morphablemodel/io/*) source_group(morphablemodel\\io REGULAR_EXPRESSION include/eos/morphablemodel/io/*)
source_group(fitting include/eos/fitting/*) source_group(fitting REGULAR_EXPRESSION include/eos/fitting/*)
source_group(fitting\\detail include/eos/fitting/detail/*) source_group(fitting\\detail REGULAR_EXPRESSION include/eos/fitting/detail/*)
source_group(render include/eos/render/*) source_group(render REGULAR_EXPRESSION include/eos/render/*)
source_group(render\\detail include/eos/render/detail/*) source_group(render\\detail REGULAR_EXPRESSION include/eos/render/detail/*)
source_group(video REGULAR_EXPRESSION include/eos/video/*)
# The eos install target: # The eos install target:
install(DIRECTORY ${CMAKE_SOURCE_DIR}/include/ DESTINATION include) # our library headers install(DIRECTORY ${CMAKE_SOURCE_DIR}/include/ DESTINATION include) # our library headers
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment