maths
ヘッダー ファイルのみで構成されるライブラリであるディレクトリがあります。ホームディレクトリで次のコマンドを実行して、プログラムをコンパイルしようとしています。
g++ -I ../maths prog1.cpp prog2.cpp test.cpp -o et -lboost_date_time -lgsl -lgslcblas
しかし、次のコンパイル エラーが発生します。
prog1.cpp:4:23: fatal error: maths/Dense: No such file or directory
compilation terminated.
prog2.cpp:6:23: fatal error: maths/Dense: No such file or directory
compilation terminated.
maths
.cpp ファイルと同じディレクトリ (ホーム ディレクトリ) にあり、自宅からもコンパイル ラインを実行しています。
prog1.cpp と prog2.cpp の
#include<maths/Dense>
4 行目と 6 行目にそれぞれ次のヘッダーがあるため、エラーが発生します。
どうすれば修正できますか。