Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FetchContent support #1063

Closed
valaxkong opened this issue Jan 22, 2024 · 4 comments
Closed

FetchContent support #1063

valaxkong opened this issue Jan 22, 2024 · 4 comments
Labels

Comments

@valaxkong
Copy link

I saw the README said glog can be incorporated into custom projects using the CMake command add_subdirectory. I tried it like this

FetchContent_Declare(
  glog
  GIT_REPOSITORY https://github.com/google/glog.git
  GIT_TAG        v0.6.0
)
FetchContent_GetProperties(glog)
if(NOT glog_POPULATED)
  FetchContent_Populate(glog)
  add_subdirectory(${glog_SOURCE_DIR})
endif()

When building as a submodule of my projects, I found those template codes in xxx.h.in files have not been replaced to generate xxx.h file. How to do things right? Thanks for your help.

@sergiud sergiud changed the title Would you like to support FetchContent manner for CMake system? FetchContent support Jan 22, 2024
@valaxkong
Copy link
Author

valaxkong commented Jan 22, 2024

I found the solutions.

FetchContent_Declare(
  glog
  GIT_REPOSITORY https://github.com/google/glog.git
  GIT_TAG        v0.6.0
)
FetchContent_GetProperties(glog)
if(NOT glog_POPULATED)
  FetchContent_Populate(glog)
  add_subdirectory(${glog_SOURCE_DIR} ${glog_BINARY_DIR})
endif()

And I will give a PR later.

@sergiud
Copy link
Collaborator

sergiud commented Jan 22, 2024

add_subdirectory mentioned in the docs does not use FetchContent. You need to specify the build directory only for the latter explicitly.

@sergiud
Copy link
Collaborator

sergiud commented Jan 22, 2024

The issue is not actionable. You can however extend the README with a link to CMake reference documentation that explains how to use FetchContent correctly if you want.

@sergiud sergiud closed this as completed Jan 22, 2024
@valaxkong
Copy link
Author

@sergiud I opened a PR which gives an example to show the usage of FetchContent and add_subdirectory. #1067

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants