cmakeで環境変数を使ってディレクトリを指定したい
手順
$ENV{HOGE}
を使う。ENVをつけよう。
${HOGE}
そのままだとうまくいかない。
cmake_minimum_required(VERSION 3.8)
include_directories(
$ENV{GTEST_DIR}/include
)
add_executable(
fuga
fuga.cpp
)
target_link_libraries(
fuga
$ENV{GMOCK_DIR}/gtest/libgtest.a
$ENV{GMOCK_DIR}/gtest/libgtest_main.a
)
Author And Source
この問題について(cmakeで環境変数を使ってディレクトリを指定したい), 我々は、より多くの情報をここで見つけました https://qiita.com/cuminseed/items/dda453100486a3f44197著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .