Skip to content

Commit

Permalink
Install shared sqlite library on unix
Browse files Browse the repository at this point in the history
  • Loading branch information
kbenne committed Jan 7, 2015
1 parent c85f073 commit 7a3291d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions third_party/SQLite/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,12 @@ if (MSVC)
ADD_LIBRARY( sqlite ${SRC} )
else()
ADD_LIBRARY( sqlite SHARED ${SRC} )

set_target_properties(
sqlite
PROPERTIES
INSTALL_NAME_DIR "@executable_path"
)
install( TARGETS sqlite DESTINATION ./ )
endif()

6 comments on commit 7a3291d

@nrel-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

InstallSQLite (kbenne) - x86_64-Linux-Ubuntu-14.04-gcc-4.8: OK (1467 of 1582 tests passed)

Build Badge Test Badge

@nrel-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

InstallSQLite (kbenne) - x86_64-Linux-Ubuntu-14.04-cppcheck-1.61: OK (0 of 0 tests passed)

Build Badge

@nrel-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

InstallSQLite (kbenne) - i386-Windows-7-VisualStudio-12: OK (1467 of 1582 tests passed)

Build Badge Test Badge

@nrel-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

InstallSQLite (kbenne) - Win64-Windows-7-VisualStudio-12: OK (1467 of 1582 tests passed)

Build Badge Test Badge

@nrel-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

InstallSQLite (kbenne) - x86_64-MacOS-10.9-clang: OK (1461 of 1576 tests passed)

Build Badge Test Badge

@nrel-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

InstallSQLite (kbenne) - x86_64-MacOS-10.9-clang-Debug: OK (1461 of 1576 tests passed)

Build Badge Test Badge

Please sign in to comment.