3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

階層構造になったcmakeプロジェクトのコンパイルにはadd_subdirectory

Last updated at Posted at 2017-01-26

こんな感じのプロジェクトがあったときに

- AAA --- bbb.cpp
 		|
 		|- CMakeLists.txt (1)
 		|
 		|- CCC --- ddd.cpp
 				 |
 				 |- CMakeLists.txt (2)

ddd.cppをコンパイルして作ったライブラリファイルをbbb.cppにリンクして使いたい場合は、(1)の中に以下のように書いてやるとうまくいく。

CMakeLists.txt(1)
include_directories(CCC)
add_subdirectory(CCC)

こうしておくと、CCC内に出来る予定のライブラリファイルをリンクしようとするときに、後のtarget_link_libraryでライブラリが生成されるまで待ってくれる。

※ link_directoryとかを使うとCCCディレクトリ内のコンパイルが終わる前にリンクしようとしたりしてハマって不幸になるので注意

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?