CMakeLists C程序与gtest(C ++)

时间:2015-08-06 22:31:28

标签: c++ c cmake

我想创建一个输出两个版本的可执行文件的CMakeLists。一个将是我的C应用程序的发布版本。 另一个是我的应用程序的gtest版本。

cmake_minimum_required(VERSION 3.1)

set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "C:\\Users\\James\\ClionProjects\\DustAgent\\build")

project(DustAgent)

include_directories ( WindowsApi gtest-1.7.0/include )

set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -std=c99 -pthread")

set(SOURCE_FILES main.c utilities/utilities.c utf8/utf8.c)
set(GTEST_SOURCE_FILES ${SOURCE_FILES} gtest-1.7.0/src/gtest-all.cc)
add_executable(DustAgent ${SOURCE_FILES})

如何使第一个exe不需要谷歌库,如何为g ++版本提供c ++的特定gcc选项?

1 个答案:

答案 0 :(得分:1)

首先应创建一个库,然后将它与可执行文件和测试一起链接。可执行文件和测试应该有一个单独的源代码。

add_library(DustAgentLibrary utilities/utilities.c utf8/utf8.c)

add_executable(DustAgent main.c)
target_link_libraries(DustAgent DustAgentLibrary)

add_executable(DustAgentTest test.c)
target_link_libraries(DustAgentTest DustAgentLibrary gtest)
add_test(DustAgentTest DustAgentTest)