Currently the build command
create_library(".", "MyLib";
lib_name="libmine",
precompile_execution_file="build/generate_precompile.jl",
precompile_statements_file="build/additional_precompile.jl",
header_files=["build/mylib.h"], force=true, filter_stdlibs=true,
incremental=true)
have to recreate the header files. And in the Cpp project that uses the header, I have to recompile the cpp project everytime I recompile the julia project. Is there a way to keep the c interface header files untouched if not changed anything in the interface so that the cpp project doesn’ t needs recompiling just a relinking? Do I have to copy the interface headers everytime there’ s a change?