提交 53617bd8 编写于 作者: G groot

Merge branch 'jinhai' of 192.168.1.105:jinhai/vecwise_engine into jinhai


Former-commit-id: 9d9371678e5760b443b8c69e34c9f7d9e7735a37
......@@ -4,3 +4,5 @@ __pycache__
.env
build
cmake-build-debug
cmake_build
......@@ -43,13 +43,17 @@ set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules/" ${CMAKE_MODUL
set(VECWISE_ENGINE_INCLUDE ${PROJECT_SOURCE_DIR}/include)
set(VECWISE_ENGINE_SRC ${PROJECT_SOURCE_DIR}/src)
set(VECWISE_THIRD_PARTY ${CMAKE_CURRENT_SOURCE_DIR}/third_party/build)
set(VECWISE_THIRD_PARTY ${CMAKE_CURRENT_SOURCE_DIR}/third_party)
set(VECWISE_THIRD_PARTY_BUILD ${CMAKE_CURRENT_SOURCE_DIR}/third_party/build)
add_compile_definitions(PROFILER=${PROFILER})
include_directories(${VECWISE_ENGINE_INCLUDE})
include_directories(${VECWISE_ENGINE_SRC})
include_directories(${VECWISE_THIRD_PARTY}/include)
include_directories(${VECWISE_THIRD_PARTY_BUILD}/include)
execute_process(COMMAND bash build.sh
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/third_party)
add_subdirectory(src)
......
......@@ -5,7 +5,7 @@
#-------------------------------------------------------------------------------
link_directories(
"${CMAKE_BINARY_DIR}/lib"
"${VECWISE_THIRD_PARTY}/lib"
"${VECWISE_THIRD_PARTY_BUILD}/lib"
)
set(unittest_srcs
......
......@@ -8,4 +8,12 @@
TEST(LogTest, INIT_TEST) {
ASSERT_STREQ("A", "A");
}
TEST(LogTest, RUN_TEST) {
ASSERT_STREQ("B", "B");
}
TEST(LogTest, FINISH_TEST) {
ASSERT_STREQ("C", "C");
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册