Skip to content
Snippets Groups Projects
Commit 90df7b19 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

adding header files to targets as suggested by brian

parent 0801d0f9
No related branches found
No related tags found
No related merge requests found
...@@ -24,4 +24,5 @@ set(SRC ...@@ -24,4 +24,5 @@ set(SRC
MallocUtils.cpp MallocUtils.cpp
) )
append_gmsh_src(Common "${SRC}") file(GLOB HDR RELATIVE ${CMAKE_SOURCE_DIR}/Common *.h)
append_gmsh_src(Common "${SRC};${HDR}")
...@@ -27,4 +27,5 @@ set(SRC ...@@ -27,4 +27,5 @@ set(SRC
partitionDialog.cpp partitionDialog.cpp
) )
append_gmsh_src(Fltk "${SRC}") file(GLOB HDR RELATIVE ${CMAKE_SOURCE_DIR}/Fltk *.h)
append_gmsh_src(Fltk "${SRC};${HDR}")
...@@ -34,4 +34,5 @@ set(SRC ...@@ -34,4 +34,5 @@ set(SRC
CellComplex.cpp ChainComplex.cpp Homology.cpp CellComplex.cpp ChainComplex.cpp Homology.cpp
) )
append_gmsh_src(Geo "${SRC}") file(GLOB HDR RELATIVE ${CMAKE_SOURCE_DIR}/Geo *.h)
append_gmsh_src(Geo "${SRC};${HDR}")
...@@ -22,4 +22,5 @@ set(SRC ...@@ -22,4 +22,5 @@ set(SRC
gl2yuv.cpp gl2yuv.cpp
) )
append_gmsh_src(Graphics "${SRC}") file(GLOB HDR RELATIVE ${CMAKE_SOURCE_DIR}/Graphics *.h)
append_gmsh_src(Graphics "${SRC};${HDR}")
...@@ -32,5 +32,5 @@ set(SRC ...@@ -32,5 +32,5 @@ set(SRC
meshRefine.cpp meshRefine.cpp
) )
append_gmsh_src(Mesh "${SRC}") file(GLOB HDR RELATIVE ${CMAKE_SOURCE_DIR}/Mesh *.h)
append_gmsh_src(Mesh "${SRC};${HDR}")
...@@ -27,4 +27,5 @@ set(SRC ...@@ -27,4 +27,5 @@ set(SRC
gmshLinearSystemCSR.cpp gmshLinearSystemCSR.cpp
) )
append_gmsh_src(Numeric "${SRC}") file(GLOB HDR RELATIVE ${CMAKE_SOURCE_DIR}/Numeric *.h)
append_gmsh_src(Numeric "${SRC};${HDR}")
...@@ -9,4 +9,5 @@ set(SRC ...@@ -9,4 +9,5 @@ set(SRC
FunctionManager.cpp FunctionManager.cpp
) )
append_gmsh_src(Parser "${SRC}") file(GLOB HDR RELATIVE ${CMAKE_SOURCE_DIR}/Parser *.h)
append_gmsh_src(Parser "${SRC};${HDR}")
...@@ -27,4 +27,5 @@ set(SRC ...@@ -27,4 +27,5 @@ set(SRC
HomologyComputation.cpp HomologyComputation.cpp
) )
append_gmsh_src(Plugin "${SRC}") file(GLOB HDR RELATIVE ${CMAKE_SOURCE_DIR}/Plugin *.h)
append_gmsh_src(Plugin "${SRC};${HDR}")
...@@ -14,4 +14,5 @@ set(SRC ...@@ -14,4 +14,5 @@ set(SRC
ColorTable.cpp ColorTable.cpp
) )
append_gmsh_src(Post "${SRC}") file(GLOB HDR RELATIVE ${CMAKE_SOURCE_DIR}/Post *.h)
append_gmsh_src(Post "${SRC};${HDR}")
...@@ -14,7 +14,8 @@ set(MOC_HDR ...@@ -14,7 +14,8 @@ set(MOC_HDR
graphicWindow.h graphicWindow.h
) )
append_gmsh_src(Qt "${SRC}") file(GLOB HDR RELATIVE ${CMAKE_SOURCE_DIR}/Qt *.h)
append_gmsh_src(Qt "${SRC};${HDR}")
foreach(FILE ${MOC_HDR}) foreach(FILE ${MOC_HDR})
list(APPEND MOC_LIST Qt/${FILE}) list(APPEND MOC_LIST Qt/${FILE})
......
...@@ -10,4 +10,5 @@ set(SRC ...@@ -10,4 +10,5 @@ set(SRC
elasticitySolver.cpp elasticitySolver.cpp
) )
append_gmsh_src(Solver "${SRC}") file(GLOB HDR RELATIVE ${CMAKE_SOURCE_DIR}/Solver *.h)
append_gmsh_src(Solver "${SRC};${HDR}")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment