Advertisement
Guest User

Untitled

a guest
Aug 1st, 2017
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 1.95 KB | None | 0 0
  1. # file(GLOB sourcesAllNoMain
  2. #   "/action/*.cpp"
  3. #   "/src/action/config/*.cpp"
  4. #   "src/com/*.cpp"
  5. #   RELATIVE "src" "com/impl/*.cpp"
  6. #   "com/config/*.cpp"
  7. #   )
  8.  
  9. include_directories(${CMAKE_CURRENT_SOURCE_DIR})
  10.  
  11. file(GLOB sourcesAllNoMain
  12.   "action/*.cpp"
  13.   "action/config/*.cpp"
  14.  
  15.   "com/*.cpp"
  16.   "com/impl/*.cpp"
  17.   "com/config/*.cpp"
  18.  
  19.   "cplscheme/*.cpp"
  20.   "cplscheme/impl/*.cpp"
  21.   "cplscheme/config/*.cpp"
  22.  
  23.   "geometry/*.cpp"
  24.   "geometry/config/*.cpp"
  25.   "geometry/impl/*.cpp"
  26.  
  27.   "io/*.cpp"
  28.   "io/impl/*.cpp"
  29.   "io/config/*.cpp"
  30.  
  31.   "logging/*.cpp"
  32.   "logging/config/*.cpp"
  33.  
  34.   "m2n/*.cpp"
  35.   "m2n/config/*.cpp"
  36.  
  37.   "mapping/*.cpp"
  38.   "mapping/impl/*.cpp"
  39.   "mapping/config/*.cpp"
  40.  
  41.   "math/*.cpp"
  42.  
  43.   "mesh/*.cpp"
  44.   "mesh/impl/*.cpp"
  45.   "mesh/config/*.cpp"
  46.  
  47.   "query/*.cpp"
  48.  
  49.   "spacetree/*.cpp"
  50.   "spacetree/impl/*.cpp"
  51.   "spacetree/config/*.cpp"
  52.  
  53.   "precice/*.cpp"
  54.   "precice/impl/*.cpp"
  55.   "precice/config/*.cpp"
  56.   "precice/adapters/c/*.cpp"
  57.   "precice/adapters/fortran/*.cpp"
  58.  
  59.   "tarch/configuration/*.cpp"
  60.   "tarch/irr/*.cpp"
  61.   "tarch/services/*.cpp"
  62.  
  63.   "tarch/multicore/*.cpp"
  64.   "tarch/logging/*.cpp"
  65.   "tarch/logging/configurations/*.cpp"
  66.  
  67.   "utils/*.cpp"
  68.   "utils/xml/*.cpp"
  69.   )
  70.  
  71. file(GLOB sourcesTarchTests
  72.   "tarch/tests/*.cpp"
  73.   "tarch/tests/configurations/*.cpp"
  74.   "action/tests/*.cpp"
  75.   "com/tests/*.cpp"
  76.   "cplscheme/tests/*.cpp"
  77.   "geometry/tests/*.cpp"
  78.   "io/tests/*.cpp"
  79.   "m2n/tests/*.cpp"
  80.   "mapping/tests/*.cpp"
  81.   "mesh/tests/*.cpp"
  82.   "query/tests/*.cpp"
  83.   "spacetree/tests/*.cpp"
  84.   "precice/tests/*.cpp"
  85.   "precice/tests/geometrymode/*.cpp"
  86.   "precice/tests/couplingmode/*.cpp"
  87.   "precice/tests/servermode/*.cpp"
  88.   "tarch/la/tests/*.cpp"
  89.   "utils/tests/*.cpp"
  90. )
  91.  
  92. file(GLOB sourcesTests
  93.   "*/boosttests/*.cpp")
  94.  
  95. set (sourcesAllNoMain ${sourcesAllNoMain} PARENT_SCOPE)
  96. set (sourcesTests ${sourcesTests} PARENT_SCOPE)
  97. set (sourcesTarchTests ${sourcesTarchTests} PARENT_SCOPE)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement