removed old names

This commit is contained in:
Ruixiang Du
2020-07-28 19:09:54 +08:00
parent 7fcd239c69
commit e1a776b5cb
2 changed files with 4 additions and 4 deletions

View File

@@ -89,7 +89,7 @@ $ sudo apt install libncurses5-dev
Configure and build
```
$ cd scout_sdk
$ cd wrp_sdk
$ mkdir build
$ cd build
$ cmake ..

View File

@@ -7,9 +7,9 @@ add_subdirectory(googletest)
set(GTEST_SRC
gtests/scout_can_protocol_test.cpp
)
add_executable(scout_sdk_test ${GTEST_SRC})
target_link_libraries(scout_sdk_test gtest gtest_main wrp_sdk)
target_include_directories(scout_sdk_test PUBLIC
add_executable(wrp_sdk_test ${GTEST_SRC})
target_link_libraries(wrp_sdk_test gtest gtest_main wrp_sdk)
target_include_directories(wrp_sdk_test PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<BUILD_INTERFACE:${GTEST_INCLUDE_DIRS}>
$<INSTALL_INTERFACE:include>)