mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-26 19:22:34 +01:00
f442148670
For a unix system, this commit implies no changes by default. However, the ${LIB_SUFFIX} convention was added so the build can be configured for a red-hat style installation which uses lib64 by specifying cmake -DLIB_SUFFIX=64 For a windows build (msvc), this commit will cause the .dll files to be installed in the bin/ path; import libraries .lib are still installed in the lib/ path. Installing dlls into the bin path is preferable because dlls must be in the executable %PATH% to be found at runtime, as there is not equivalent of a separate library path as there is on unix.
51 lines
1.1 KiB
CMake
51 lines
1.1 KiB
CMake
set(LIBNAME "PocoDataSQLite")
|
|
|
|
include_directories( include src )
|
|
|
|
set(SRCS "")
|
|
|
|
set(SRCS
|
|
src/Binder.cpp
|
|
src/Connector.cpp
|
|
src/Extractor.cpp
|
|
src/Notifier.cpp
|
|
src/SQLiteException.cpp
|
|
src/SQLiteStatementImpl.cpp
|
|
src/SessionImpl.cpp
|
|
src/Utility.cpp
|
|
)
|
|
|
|
|
|
if (POCO_UNBUNDLED)
|
|
set(DATASQLITELIBS PocoData PocoFoundation sqlite3)
|
|
else()
|
|
set(SRCS ${SRCS} src/sqlite3.c)
|
|
set(DATASQLITELIBS PocoData PocoFoundation)
|
|
endif()
|
|
|
|
add_definitions(-DSQLITE_THREADSAFE=1 -DSQLITE_DISABLE_LFS -DSQLITE_OMIT_UTF16 -DSQLITE_OMIT_PROGRESS_CALLBACK -DSQLITE_OMIT_COMPLETE -DSQLITE_OMIT_TCL_VARIABLE -DSQLITE_OMIT_DEPRECATED)
|
|
|
|
add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
|
|
set_target_properties( ${LIBNAME}
|
|
PROPERTIES
|
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION} )
|
|
target_link_libraries( ${LIBNAME} ${DATASQLITELIBS} )
|
|
|
|
install(
|
|
DIRECTORY include/Poco
|
|
DESTINATION include
|
|
PATTERN ".svn" EXCLUDE
|
|
)
|
|
|
|
install(
|
|
TARGETS ${LIBNAME}
|
|
LIBRARY DESTINATION lib${LIB_SUFFIX}
|
|
ARCHIVE DESTINATION lib${LIB_SUFFIX}
|
|
RUNTIME DESTINATION bin
|
|
)
|
|
|
|
if (ENABLE_TESTS)
|
|
add_subdirectory(testsuite)
|
|
endif ()
|
|
|