modelica-tools / FMUComplianceChecker

FMI Compliance Checker for validation of FMUs 1.0 and 2.0

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unable to build FMI Compliance checker

rahulsetia opened this issue · comments

The steps mentioned build are incorrect. If we create a build dir and give cmake command in that directory as describd in build steps, it give an error that CMakeList.txt file does not exist. If we copy it to build dir, it give an error that CMakeList location is not same as where source was created. Moreover it also does not allow you to build in source dir.

Sounds like you didn't provided the checker dir

mkdir build; cd build
cmake -DFMUCHK_INSTALL_PREFIX=<dir name> <checker dir>
make install test

For that particular example it should be .., like this

mkdir build; cd build
cmake -DFMUCHK_INSTALL_PREFIX=install ..
make install test

This will install in build/install

Thanks for the input, it helped.

Can I specify location of FMIL(downloaded) rather than downloading it from svn ?

Solved through proper instructions