# vega **Repository Path**: jixiangshui/vega ## Basic Information - **Project Name**: vega - **Description**: Finite element format converter - **Primary Language**: Unknown - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-22 - **Last Updated**: 2024-09-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vega [![Build Status](https://travis-ci.org/Alneos/vega.svg?branch=master)](https://travis-ci.org/Alneos/vega) Finite element format converter apt-get install cmake cmake-curses-gui gcc-4.8 valgrind apt-get install libmedc1 libmedc-dev libboost-all-dev apt-get install ccache distcc distcc-pump graphviz ECLIPSE: install plugin: C/C++ Unit Testing support included in standard repositories. Window -> Preferences -> C/C++ -> Build -> Settings -> Discovery -> CDT GCC Build-in Compiler Settings in the text box entitled Command to get compiler specs append -std=c++11 Generate eclipse project files cmake -G"Eclipse CDT4 - Unix Makefiles" -D CMAKE_BUILD_TYPE=Debug .. Then import generated directory to eclipse as standard eclipse project. Right click project and open Properties -> C/C++ General -> Preprocessor Include Paths, Marcos etc. -> Providers enable CDT GCC Build-in Compiler Settings and move it higher than Contributed PathEntry Containers (This is important) Right Click over "[Targets]" and "[Subprojects]", mark both as "derived" in properties recompile, regenerate Project ->C/C++ Index and restart Eclipse. LINUX: cd /"wherever vegapp was downloaded"/vega mkdir -p ./build/x86_64 cd ./build/x86_64 Build debug (default, dynamic linking): cmake -DCMAKE_BUILD_TYPE=Debug ../.. make -j ctest . Build release (static linking): cmake -DCMAKE_BUILD_TYPE=SRelease ../.. make -j ctest .