Re: [deal.II] adding openmp in CMakeLists.txt

2023-07-17 Thread Matthias Maier
- Most of your find package calls have to come after the project(...) call. deal.II is a bit special - we call find_package(deal.II) before project() so that the compiler is configured to be the same as the one used for deal.II. - Also you only need to call target_link_libraries() with

[deal.II] adding openmp in CMakeLists.txt

2023-07-17 Thread Lance Zhang
Hello everyone, I have one problem when I tried to add openmp lib to CMakeLists.txt to use parallel functionality. May I know how I could add openmp lib? And one more question,I wrote two code files which are called gcmma and mma,may I know how could I add these two files in this CMakeLists as