| Previous Le fichier main.cpp complet | Parent Programme de calcul | Outline | Next Compilation | 
Écrivons le fichier CMakeLists.txt :
| 1 | 
add_executable(naive_gray_scott main.cpp) | 
| 1 | set_property(TARGET naive_gray_scott PROPERTY COMPILE_FLAGS "-O3") | 
| 1 | target_link_libraries(naive_gray_scott gray_scott_data_format gray_scott_naive tensor_alloc option_parser data_stream string_utils ${HDF5_CXX_LIBRARIES} TBB::tbb) | 
| 1 2 3 4 5 | add_executable(naive_gray_scott main.cpp) set_property(TARGET naive_gray_scott PROPERTY COMPILE_FLAGS "-O3") target_link_libraries(naive_gray_scott gray_scott_data_format gray_scott_naive tensor_alloc option_parser data_stream string_utils ${HDF5_CXX_LIBRARIES} TBB::tbb) | 
| Previous Le fichier main.cpp complet | Parent Programme de calcul | Outline | Next Compilation |