You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
298 B
9 lines
298 B
3 years ago
|
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
|
||
|
|
||
|
add_executable(glog_main ${CMAKE_CURRENT_SOURCE_DIR}/glog_main.cc)
|
||
|
target_link_libraries(glog_main glog)
|
||
|
|
||
|
|
||
|
add_executable(glog_logtostderr_main ${CMAKE_CURRENT_SOURCE_DIR}/glog_logtostderr_main.cc)
|
||
|
target_link_libraries(glog_logtostderr_main glog)
|