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

S
superjom 已提交
4 5 6 7 8 9
find_program(CCACHE_FOUND ccache)
if(CCACHE_FOUND)
  set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
  set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
endif(CCACHE_FOUND)

Q
Qiao Longfei 已提交
10
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
S
superjom 已提交
11
set(CMAKE_CXX_STANDARD 11)
S
superjom 已提交
12
set(CMAKE_CXX_FLAGS "-fPIC")
S
superjom 已提交
13 14


Q
Qiao Longfei 已提交
15 16 17 18 19
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 已提交
20

S
superjom 已提交
21

Q
Qiao Longfei 已提交
22 23 24 25
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
26
include(external/eigen)     # download eigen
Q
Qiao Longfei 已提交
27 28 29 30 31 32
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})
S
superjom 已提交
33

S
superjom 已提交
34
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/visualdl/storage)
S
superjom 已提交
35
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/visualdl/logic)
S
Superjom 已提交
36
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/visualdl/python)
S
superjom 已提交
37 38

add_executable(vl_test
S
superjom 已提交
39
        ${PROJECT_SOURCE_DIR}/visualdl/test.cc
S
superjom 已提交
40
        ${PROJECT_SOURCE_DIR}/visualdl/logic/sdk_test.cc
41
        ${PROJECT_SOURCE_DIR}/visualdl/logic/histogram_test.cc
42
        ${PROJECT_SOURCE_DIR}/visualdl/storage/storage_test.cc
S
superjom 已提交
43
        ${PROJECT_SOURCE_DIR}/visualdl/utils/test_concurrency.cc
44
        ${PROJECT_SOURCE_DIR}/visualdl/utils/test_image.cc
S
superjom 已提交
45 46
        ${PROJECT_SOURCE_DIR}/visualdl/utils/concurrency.h
        ${PROJECT_SOURCE_DIR}/visualdl/utils/filesystem.h
S
superjom 已提交
47
        )
48
target_link_libraries(vl_test sdk storage entry tablet im gtest glog protobuf gflags pthread eigen3)
S
superjom 已提交
49 50 51

enable_testing ()

S
superjom 已提交
52
add_custom_target(test_init COMMAND $CMAKE_BINARY_DIR)
S
Superjom 已提交
53
add_test(NAME vstest COMMAND ./vl_test)