Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
Fix directory paths. (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
rnburn authored Feb 26, 2018
1 parent 3fb91d3 commit 6d813fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ endif()
try_compile(
SUPPORTS_WEAK_SYMBOLS
"${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/CMakeTmp"
SOURCES ${CMAKE_SOURCE_DIR}/cmake/weak_symbol.cpp)
SOURCES ${CMAKE_CURRENT_LIST_DIR}/cmake/weak_symbol.cpp)

# ==============================================================================
# Set up options
Expand Down
2 changes: 1 addition & 1 deletion example/tutorial/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
if (BUILD_MOCKTRACER AND BUILD_SHARED_LIBS)
include_directories(${CMAKE_SOURCE_DIR}/mocktracer/include)
include_directories(../../mocktracer/include)
add_executable(tutorial-example tutorial-example.cpp)
target_link_libraries(tutorial-example opentracing_mocktracer)
endif()

0 comments on commit 6d813fa

Please sign in to comment.