16 lines
240 B
CMake
16 lines
240 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
project(Transmission)
|
|
|
|
add_subdirectory(src)
|
|
if (IS_TEST)
|
|
add_subdirectory(test)
|
|
message("包含Gtest目标")
|
|
endif ()
|
|
|
|
add_executable(exec main.cpp
|
|
)
|
|
|
|
target_link_libraries(exec Transmission)
|
|
|
|
|