mirror of
https://github.com/gflags/gflags.git
synced 2025-04-07 22:40:52 +00:00
Now use gflags::gflags instead of gflags note: seems already in use in gRPC cf https://github.com/grpc/grpc/blob/master/cmake/gflags.cmake#L30
10 lines
227 B
CMake
10 lines
227 B
CMake
## gflags package configuration tests
|
|
|
|
cmake_minimum_required (VERSION 2.8.12 FATAL_ERROR)
|
|
|
|
project (gflags_${TEST_NAME})
|
|
|
|
find_package (gflags REQUIRED)
|
|
|
|
add_executable (foo main.cc)
|
|
target_link_libraries (foo gflags::gflags)
|