Relative Content

Tag Archive for cmake

How to find files with $ in file(GLOB …)?

I’m trying to locate a specific file in my CMake build using file(GLOB ...) while accounting for $<CONFIG> to ensure the correct version of the file is selected based on the build configuration. Specifically, I need to find the vc*-mtd.lib file, where the * represents a version number that varies.

Use CMake to link to objects created by an executable project

I have a CMake based project that builds several applications and libraries
Now I need to perform some unit testing. My unit test project will need to access the objects produced by the building of the applications.
To attempt to achieve this I have added this to the CMakeLists file for one of the apps

CMake: Select the correct lib file depending on architecture and build config [duplicate]

This question already has answers here: How to detect if 64 bit MSVC with cmake? (7 answers) Different Debug and Release library linking with CMAKE (5 answers) Closed 4 days ago. I have a CMake-project where I want to include a 3rd party library with the following directory structure: include/xx.h x86-debug/xx.lib x86-release/xx.lib x64-debug/xx.lib x64-release/xx.lib I […]