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

Categories

os:windows10 vs:vs2017 cmake: 3.19.2 boost: 1.75.0
environment: BOOST_ROOT c:/boost/


project(testboost LANGUAGES C)

include(CMakePrintHelpers)

set(CMAKE_C_STANDARD 99)
set(CMAKE_C_EXTENSIONS OFF)
set(CMAKE_C_STANDARD_REQUIRED ON)

set(Boost_NO_BOOST_CMAKE ON)

find_package(Boost 1.75.0 REQUIRED COMPONENTS date_time filesystem iostreams)

if (Bosst_FOUND)
    message(STATUS "Find Boost")
else()
    message(STATUS "Not Find Boost")
endif()

output:

Not Find Boost

I don't know why it is not work!!!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...