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
312 B
9 lines
312 B
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
|
|
|
|
add_executable(glog_main ${CMAKE_CURRENT_SOURCE_DIR}/glog_main.cc)
|
|
target_link_libraries(glog_main extern_glog)
|
|
|
|
|
|
add_executable(glog_logtostderr_main ${CMAKE_CURRENT_SOURCE_DIR}/glog_logtostderr_main.cc)
|
|
target_link_libraries(glog_logtostderr_main extern_glog)
|