CMakeLists.txt 1.7 KB
Newer Older
S
superjom 已提交
1
cmake_minimum_required(VERSION 3.5)
S
superjom 已提交
2 3
project(VisualDL)

Q
Qiao Longfei 已提交
4
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
S
superjom 已提交
5
set(CMAKE_CXX_STANDARD 11)
S
superjom 已提交
6
set(CMAKE_CXX_FLAGS "-fPIC")
S
superjom 已提交
7 8


Q
Qiao Longfei 已提交
9 10 11 12 13
set(THIRD_PARTY_PATH "${CMAKE_BINARY_DIR}/third_party" CACHE STRING
        "A path setting third party libraries download & build directories.")

################################ Configurations #######################################
option(WITH_TESTING     "Compile VisualDL with unit testing"        ON)
S
superjom 已提交
14

S
superjom 已提交
15

Q
Qiao Longfei 已提交
16 17 18 19 20 21 22 23 24 25 26
include(external/zlib)      # download, build, install zlib
include(external/gflags)    # download, build, install gflags
include(external/glog)      # download, build, install glog
include(external/gtest)     # download, build, install gtest
include(external/pybind11)  # download pybind11
include(external/protobuf)  # download, build, install protobuf
include(external/python)    # find python and set path

include_directories(${PROJECT_SOURCE_DIR})
include_directories(${CMAKE_CURRENT_BINARY_DIR})
include_directories(${PROJECT_SOURCE_DIR}/thirdparty/local/include)
S
superjom 已提交
27

S
superjom 已提交
28 29
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/visualdl/storage)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/visualdl/logic)
S
superjom 已提交
30 31

add_executable(vl_test
S
superjom 已提交
32 33 34 35 36 37
        ${PROJECT_SOURCE_DIR}/visualdl/test.cc
        ${PROJECT_SOURCE_DIR}/visualdl/storage/storage_test.cc
        ${PROJECT_SOURCE_DIR}/visualdl/utils/test_concurrency.cc
        ${PROJECT_SOURCE_DIR}/visualdl/logic/im_test.cc
        ${PROJECT_SOURCE_DIR}/visualdl/utils/concurrency.h
        ${PROJECT_SOURCE_DIR}/visualdl/utils/filesystem.h
S
superjom 已提交
38
        )
S
superjom 已提交
39
target_link_libraries(vl_test storage im gtest glog protobuf gflags pthread)
S
superjom 已提交
40 41 42 43

enable_testing ()

add_test(NAME vstest COMMAND vl_test)