In the compiler settings, you need to make sure that the include paths are to your installation for dealII.Both for the sources and what is bundled. Ex. /home/phillip/dealii851/include and /home/phillip/dealii851/include/deal.II/bundled
In the linker settings, have the linker library search path point to the dealii installation director with the lib folder. And, place in the library name in the Libraries option Ex Path -> /home/phillip/dealii851/lib Library -> libdeal_II
In order to actually run a program (steps 1 and 2 will allow you to compile the application), you need to copy the library libdeal_II.so.8.5.1 from the lib folder in the installation directory of DealII to the /usr/lib folder
Long story short, my application requires me to do this. (Maybe I just don't know how to use CMAKE too well). Basically, my application, I ma developing a GUI that will use dealii as the solver. So I am not sure how cmake will interact with the GUI library files that do not use cmake?
Anyways, I found that this is an easier procedure.
What is odd is that this code that I am compiling works fine on another machine and I generated my procedure from the working machine. Has anyone received a set of errors similar to this?
I as able to compile step-1 and run it within the IDE without any issues. Maybe I am referencing something in my own code that is not being reference in the step-1
--
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en
---
You received this message because you are subscribed to a topic in the Google Groups "deal.II User Group" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/dealii/NVFtQzaKv7c/unsubscribe.
To unsubscribe from this group and all its topics, send an email to dealii+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and all its topics, send an email to dealii+un...@googlegroups.com.
Doing it the normal way with cmake, step 6 is able to run properly without any errors