Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Commit

Permalink
[fix] fix CMakeList.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen authored Mar 6, 2017
1 parent 0995c47 commit 4fbf57d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/sqlite/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ if(SQLITE3_LIB)

add_library(sqlite3 SHARED IMPORTED)
if(WIN32)
set_target_properties(sqlite3 PROPERTIES IMPORTED_LOCATION ${SQLITE3_LIB})
else(WIN32)
set_target_properties(sqlite3 PROPERTIES IMPORTED_LOCATION ${SQLITE3_DLL})
set_target_properties(sqlite3 PROPERTIES IMPORTED_IMPLIB ${SQLITE3_LIB})
else(WIN32)
set_target_properties(sqlite3 PROPERTIES IMPORTED_LOCATION ${SQLITE3_LIB})
endif(WIN32)

endif(SQLITE3_LIB)
Expand Down

0 comments on commit 4fbf57d

Please sign in to comment.