view extern/gtest/CMakeLists.txt @ 403:d5ec1174b707

Massive cleanup
author David Demelier <markand@malikania.fr>
date Mon, 05 Oct 2015 14:27:19 +0200
parents 0b576ee64d45
children 3e89f5684cef
line wrap: on
line source

#
# CMakeLists.txt -- code building for common code
#
# Copyright (c) 2013-2015 David Demelier <markand@malikania.fr>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#

project(GoogleTest)

add_library(gtest src/gtest-all.cc)

target_include_directories(
	gtest
	PUBLIC
		${GoogleTest_SOURCE_DIR}/include
	PRIVATE
		${GoogleTest_SOURCE_DIR}
)

target_compile_options(gtest PUBLIC "-Wno-missing-field-initializers")

if (NOT WIN32)
	target_link_libraries(gtest -pthread)
endif ()