Skip clang tools on ExternalProject #62
Replies: 2 comments 10 replies
-
ExternalProject is more useful for orchestrating superbuilds. cmake-init allows you to use a package manager, just use one of them to bring in dependencies. |
Beta Was this translation helpful? Give feedback.
-
Only thing I found in there was to execute Here is a complete list of steps so far:
CLion File->settings->Build, Execution, Deployment->Python Interpreter Conan Profile
Get Dependencies From the root of the project directory, run the command This will retrieve the missing packages for out dependencies into the local cache. Result after reloading root's CmakeLists.txt:
If I try to run any of
from the Hacking.md, as it says, from the project root. I end up with
If I try from proect root
If I create and cd to a build directory and
Sorry if I appear dumb. I have a 142 IQ, I promise. I've never used these tools before and am noobish to cmake and unix in general. |
Beta Was this translation helpful? Give feedback.
-
I bring in gtest as an external project. How can I get the build to skip running clang tools on the external project, but still run them on my source code?
I've got a gtest.cmake in project/externals that looks like:
and it is used in my tests via the following cmake entries in the test/CmakeLists.txt
Beta Was this translation helpful? Give feedback.
All reactions