Skip to content
Prev Previous commit
Next Next commit
Add current folder to the list of includes.
  • Loading branch information
vgvassilev committed Apr 6, 2017
commit cd1255ab33914d40ff63c9f8823476267f043acd
2 changes: 1 addition & 1 deletion cmake/modules/RootNewMacros.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -1083,7 +1083,7 @@ endfunction()
#
function(ROOT_ADD_GTEST test_suite)
CMAKE_PARSE_ARGUMENTS(ARG "" "" "LIBRARIES" ${ARGN})
include_directories(${GTEST_INCLUDE_DIR} ${GMOCK_INCLUDE_DIR})
include_directories(${CMAKE_CURRENT_BINARY_DIR} ${GTEST_INCLUDE_DIR} ${GMOCK_INCLUDE_DIR})

set(source_files ${ARG_UNPARSED_ARGUMENTS})
# Note we cannot use ROOT_EXECUTABLE without user-specified set of LIBRARIES to link with.
Expand Down