File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
source/layers/validation/checkers/events_checker Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ set(CMAKE_CXX_STANDARD 14)
6
6
set (CMAKE_CXX_STANDARD_REQUIRED ON )
7
7
set (CMAKE_CXX_EXTENSIONS OFF )
8
8
9
+ set (THIRD_PARTY_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR} /third_party )
10
+
9
11
if (MSVC AND (MSVC_VERSION LESS 1900 ))
10
12
message (FATAL_ERROR "Visual Studio Compiler Version >= 1900 Required to build." )
11
13
endif ()
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ target_sources(${TARGET_NAME}
3
3
${CMAKE_CURRENT_LIST_DIR} /zel_events_checker.h
4
4
${CMAKE_CURRENT_LIST_DIR} /zel_events_checker.cpp
5
5
6
- ${CMAKE_SOURCE_DIR} /third_party /xla/graphcycles.cc
6
+ ${THIRD_PARTY_SOURCE_DIR} /xla/graphcycles.cc
7
7
)
8
8
9
9
target_include_directories (${TARGET_NAME}
10
10
PRIVATE
11
- ${CMAKE_SOURCE_DIR} /third_party
11
+ ${THIRD_PARTY_SOURCE_DIR}
12
12
)
You can’t perform that action at this time.
0 commit comments