Skip to content

Commit 0259b1f

Browse files
committed
whereami: Remove a useless check from CMakeLists.txt.
This is a relict from the old build system, where each external project was in a Git submodule.
1 parent d1f390d commit 0259b1f

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

deps/whereami/CMakeLists.txt

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,5 @@ set(WHEREAMI_SOURCES
22
whereami.c
33
)
44

5-
if(NOT TARGET whereami)
6-
7-
add_library(whereami STATIC ${WHEREAMI_SOURCES})
8-
target_include_directories(whereami PUBLIC ${CMAKE_CURRENT_LIST_DIR})
9-
10-
endif()
5+
add_library(whereami STATIC ${WHEREAMI_SOURCES})
6+
target_include_directories(whereami PUBLIC ${CMAKE_CURRENT_LIST_DIR})

0 commit comments

Comments
 (0)