This computer program will analyse a two dimensional frame using the Finite Element Method.
How to Compile the program using CMake
- cmake -S . -B build
Command switches: -S directs CMake to use the current directory as source -B directs CMake to put build files in the build directory
- cmake --build build
This program was compiled by opening Developer Command Prompt for VS 2022, navigating to the project direcotry and using the commands above