Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
788 views
in Technique[技术] by (71.8m points)

cmake - How to clear/delete a cache variable

Trying to get find_path to do what I want.

find_path(temmp include/help.h)
message("temmp= ${temmp}")

help.h is found. The output is temmp= /usr/local/toolA

find_path(temmp include/foo.shoe)
message("temmp= ${temmp}")

foo.shoe does not exist (not found). The output is temmp= /usr/local/toolA The cache variable exists, so the variable (temmp) is untouched.

I try and clear the cache var with this:

set (temmp "" CACHE INTERNAL "")
find_path(temmp include/help.h)
message("temmp= ${temmp}")

No change. The variable is cleared, but still exists. The output is temmp= (find_path does not run.)

How can I delete the temmp variable from the cache? (I want to force the find_path to run again.)

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use unset:

unset(temmp CACHE)

As an aside, the find_path calls should be more like:

find_path(temmp help.h include)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...