Compile same file with different flags using CMAKE

2019-03-23 07:50发布

I want to compile the same .cpp source file into two different target executables and I am using cmake. One will have some instrumentation code and the other won't. That way I can compare the overhead of instrumentation.

I have the instrumentation code separated with #ifdefs so I want to define a value using the -D flag. I see that is possible with

add_definitions(-DINSTRUMENT)

But it looks like this then applies to all the executables created in that directory. I'm wondering if there is a good way to set the definition only for a specific executable target.

标签: g++ cmake
1条回答
神经病院院长
2楼-- · 2019-03-23 08:35

You can set the COMPILE_DEFINITIONS property of one of the targets to have target-specific definitions:

set_target_properties (instrumented_target PROPERTIES COMPILE_DEFINITIONS "INSTRUMENT")

Update:

Starting from CMake 2.8.11 you can also use target_compile_definitions for the same purpose.

查看更多
登录 后发表回答