Browse Source

Examples in LemmaCore target CXX 14

lagkey
Trevor Irons 6 years ago
parent
commit
c7b59c6458
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      Modules/LemmaCore/examples/CMakeLists.txt

+ 2
- 1
Modules/LemmaCore/examples/CMakeLists.txt View File

@@ -29,9 +29,10 @@
29 29
 
30 30
 add_executable( CubicSplineInterpolator  CubicSplineInterpolator.cpp )
31 31
 target_link_libraries(CubicSplineInterpolator "lemmacore")
32
+set_property(TARGET CubicSplineInterpolator PROPERTY CXX_STANDARD 14)
32 33
 
33 34
 add_executable( filter  filter.cpp )
34 35
 target_link_libraries(filter "lemmacore")
35
-
36
+set_property(TARGET filter PROPERTY CXX_STANDARD 14)
36 37
 
37 38
 

Loading…
Cancel
Save