You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But the resulting ../install directory is missing FMI3/fmi3_xml_dimension.h and possibly other FMI3 headers.
Trying to compile a source file containing #include "fmilib.h" with e.g. gcc -I ../install -c source.c results in an error:
In file included from ../install/include/FMI3/fmi3_import_variable.h:30,
from ../install/include/FMI3/fmi3_import.h:36,
from ../install/include/fmilib.h:30,
from source.c:1:
../install/include/FMI3/fmi3_import_dimension.h:30:10: fatal error: FMI3/fmi3_xml_dimension.h: No such file or directory
30 | #include "FMI3/fmi3_xml_dimension.h"
I believe either the header is simply missing from FMIIMPORT_PUBHEADERS or the #include is unintentional.
Tested with Unix Makefiles and MSVC 19.
The text was updated successfully, but these errors were encountered:
I'm creating a binary package from 3.0a1 with
But the resulting
../install
directory is missingFMI3/fmi3_xml_dimension.h
and possibly other FMI3 headers.Trying to compile a source file containing
#include "fmilib.h"
with e.g.gcc -I ../install -c source.c
results in an error:I believe either the header is simply missing from
FMIIMPORT_PUBHEADERS
or the#include
is unintentional.Tested with Unix Makefiles and MSVC 19.
The text was updated successfully, but these errors were encountered: