Hello,
I recently downloaded the FEAPpv so as to implement some new formulations in FEA. My plan is to use the standard FEAPpv program as a skeleton and build upon it subroutines to help implement my formulations.
I am using Fortran Intel compiler w/ visual studio 2008.
I realize that the installation instructions on the FEAPpv webpage aim towards building the main program, but I would like to use the Debug mode rather than Release mode.
I created a new fortran project, added required sub-routines (Elements, Plot, Program,User, and Windows) in respective folders under "Source Files". I also included required header files under Project>Properties>Fortran>General>Additional include directories. Finally I added the main program feappv.f to "Source Files"
Next when I build the project "solution configuration - Debug", after compiling all files I get the following error:
> Error 1 error LNK2019: unresolved external symbol _waitonmouseeventqq referenced in function _DOSGIN dosgin.obj
In the above: dosgin is a subroutine that uses a function waitonmouseevent
In addition to this i have 25 other errors for unresolved external symbol
Any idea what this is and how to fix it?
Thanks!!