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

Using Vc as CMake subproject #188

Closed
twesterhout opened this issue Feb 3, 2018 · 2 comments
Closed

Using Vc as CMake subproject #188

twesterhout opened this issue Feb 3, 2018 · 2 comments

Comments

@twesterhout
Copy link
Contributor

Vc version / revision Operating System
master-branch Linux

Background

This is slightly related to #184, but seeing as I have a concrete use case in mind, I decided to put it into a different issue.

I like the simd proposal and my project is in development state, so I'm OK with using unstable master branch. Git submodules seem like the easiest solution. I'm also using CMake, so my hope was that a simple add_subdirectory should suffice. This brings me to the problem.

Problem

CMakelists.txt in Vc root directory uses CMAKE_SOURCE_DIR:
https://github.com/VcDevel/Vc/blob/master/CMakeLists.txt#L8
https://github.com/VcDevel/Vc/blob/master/CMakeLists.txt#L185
https://github.com/VcDevel/Vc/blob/master/CMakeLists.txt#L312
This means that if I have Vc cloned somewhere in myproject/external/Vc, Vc's CMakelists.txt will search for Vc-specific CMake modules in myproject/cmake rather than myproject/external/Vc/cmake. Using CMAKE_CURRENT_SOURCE_DIR in all three places seems to solve the problem.

Again, I can create a small PR if you like.

Thanks,
Tom

@milianw
Copy link

milianw commented Dec 18, 2018

For the 1.4 branch at least, the CMAKE_SOURCE_DIR isn't really the only problem. The global CMAKE_CXX_FLAGS are modified and also the default CMAKE_BUILD_TYPE build flags are changed.

milianw added a commit to milianw/Vc that referenced this issue Dec 18, 2018
This patch adds a Vc_submodule.cmake which can be included by
a CMake parent project. This builds the Vc target and sets the
corresponding compiler flags on Vc. The flags are also published
through the target to all consumers of it. So basically all you
need to do now is:

```
include(Vc/Vc_submodule.cmake)

add_executable(foo ...)
target_link_libraries(foo Vc)
```

The submodule file tries not to pollute the global CMake properties.
I.e. CMAKE_CXX_FLAGS is reset to the previous value. CMAKE_BUILD_TYPE
is also not touched by default - if that is preferred, consumers need
to `set(USE_VC_BUILDTYPE_FLAGS ON)`.

This patch fixes VcDevel#188 for the 1.4 branch.
milianw added a commit to milianw/Vc that referenced this issue Dec 18, 2018
This patch adds a Vc_submodule.cmake which can be included by
a CMake parent project. This builds the Vc target and sets the
corresponding compiler flags on Vc. The flags are also published
through the target to all consumers of it. So basically all you
need to do now is:

```
include(Vc/Vc_submodule.cmake)

add_executable(foo ...)
target_link_libraries(foo Vc)
```

The submodule file tries not to pollute the global CMake properties.
I.e. CMAKE_CXX_FLAGS is reset to the previous value. CMAKE_BUILD_TYPE
is also not touched by default - if that is preferred, consumers need
to `set(USE_VC_BUILDTYPE_FLAGS ON)`.

This patch fixes VcDevel#188 for the 1.4 branch.
milianw added a commit to milianw/Vc that referenced this issue Dec 19, 2018
This patch adds a Vc_submodule.cmake which can be included by
a CMake parent project. This builds the Vc target and sets the
corresponding compiler flags on Vc. The flags are also published
through the target to all consumers of it. So basically all you
need to do now is:

```
include(Vc/Vc_submodule.cmake)

add_executable(foo ...)
target_link_libraries(foo Vc)
```

The submodule file tries not to pollute the global CMake properties.
I.e. CMAKE_CXX_FLAGS is reset to the previous value. CMAKE_BUILD_TYPE
is also not touched by default - if that is preferred, consumers need
to `set(USE_VC_BUILDTYPE_FLAGS ON)`.

This patch fixes VcDevel#188 for the 1.4 branch.
@amadio
Copy link
Collaborator

amadio commented Apr 8, 2022

Fixed by #271.

@amadio amadio closed this as completed Apr 8, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants