aboutsummaryrefslogtreecommitdiff
path: root/libs/usvfs/test/test_utils/CMakeLists.txt
blob: 88c75d62ec6afdf86de54e59a31c77e2ef83d274 (plain)
1
2
3
4
5
6
7
8
9
10
11
cmake_minimum_required(VERSION 3.16)

find_package(GTest CONFIG REQUIRED)

add_library(test_utils STATIC
	test_helpers.cpp
	test_helpers.h
)
set_target_properties(test_utils PROPERTIES FOLDER tests)
target_link_libraries(test_utils PUBLIC shared)
target_include_directories(test_utils PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})