Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 456 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 456 Bytes

This computer program will analyse a two dimensional frame using the Finite Element Method.

How to Compile the program using CMake

  1. 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

  1. 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