mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-18 16:17:14 +02:00
.github
bin
module
vendor
CPR
ConcurrentQueue
Fmt
MaxmindDB
POCO
ApacheConnector
CppParser
CppUnit
Crypto
Data
MySQL
ODBC
PostgreSQL
cmake
include
src
testsuite
CMakeLists.txt
Makefile
PostgreSQL.progen
PostgreSQL_VS90.sln
PostgreSQL_VS90.vcproj
PostgreSQL_vs140.sln
PostgreSQL_vs140.vcxproj
PostgreSQL_vs140.vcxproj.filters
PostgreSQL_vs150.sln
PostgreSQL_vs150.vcxproj
PostgreSQL_vs150.vcxproj.filters
PostgreSQL_vs160.sln
PostgreSQL_vs160.vcxproj
PostgreSQL_vs160.vcxproj.filters
dependencies
SQLite
cmake
doc
include
samples
src
testsuite
CMakeLists.txt
Data.progen
Data_VS90.sln
Data_VS90.vcproj
Data_vs140.sln
Data_vs140.vcxproj
Data_vs140.vcxproj.filters
Data_vs150.sln
Data_vs150.vcxproj
Data_vs150.vcxproj.filters
Data_vs160.sln
Data_vs160.vcxproj
Data_vs160.vcxproj.filters
Makefile
dependencies
Encodings
Foundation
JSON
JWT
MongoDB
Net
NetSSL_OpenSSL
NetSSL_Win
PDF
PageCompiler
PocoDoc
ProGen
Redis
SevenZip
Util
XML
Zip
appveyor
build
cmake
contrib
doc
packaging
patches
release
travis
.gitattributes
.gitignore
.gitmodules
.travis.yml
CHANGELOG
CMakeLists.txt
CODE_OF_CONDUCT.md
CONTRIBUTING.md
CONTRIBUTORS
LICENSE
Makefile
NEWS
README
README.md
VERSION
appveyor.yml
build_cmake.cmd
build_cmake.sh
build_vs140.cmd
build_vs150.cmd
build_vs160.cmd
buildwin.cmd
buildwin.ps1
components
configure
cppignore.lnx
cppignore.win
env.bat
env.sh
libversion
PUGIXML
SAJSON
SimpleIni
Squirrel
TinyDir
ZMQ
CMakeLists.txt
.gitignore
.gitmodules
CMakeLists.txt
LICENSE
README.md
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
51 lines
1.6 KiB
Makefile
51 lines
1.6 KiB
Makefile
#
|
|
# Makefile
|
|
#
|
|
# Makefile for Poco PostgreSQL
|
|
#
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
ifeq (0, $(shell test -e /usr/include/postgresql; echo $$?))
|
|
INCLUDE += -I/usr/include/postgresql
|
|
endif
|
|
ifeq (0, $(shell test -e /usr/local/include/postgresql; echo $$?))
|
|
INCLUDE += -I/usr/local/include/postgresql
|
|
endif
|
|
ifeq (0, $(shell test -e /usr/local/postgresql/include; echo $$?))
|
|
INCLUDE += -I/usr/local/postgresql/include
|
|
endif
|
|
ifeq (0, $(shell test -e /opt/postgresql/include; echo $$?))
|
|
INCLUDE += -I/opt/postgresql/include
|
|
endif
|
|
ifeq (0, $(shell test -e /usr/local/opt/libpq/include; echo $$?))
|
|
INCLUDE += -I/usr/local/opt/libpq/include
|
|
endif
|
|
|
|
ifeq (0, $(shell test -e /usr/lib$(LIB64SUFFIX)/postgresql; echo $$?))
|
|
SYSLIBS += -L/usr/lib$(LIB64SUFFIX)/postgresql
|
|
endif
|
|
ifeq (0, $(shell test -e /usr/local/lib$(LIB64SUFFIX)/postgresql; echo $$?))
|
|
SYSLIBS += -L/usr/local/lib$(LIB64SUFFIX)/postgresql
|
|
endif
|
|
ifeq (0, $(shell test -e /usr/local/postgresql/lib$(LIB64SUFFIX); echo $$?))
|
|
SYSLIBS += -L/usr/local/postgresql/lib$(LIB64SUFFIX)
|
|
endif
|
|
ifeq (0, $(shell test -e /opt/postgresql/lib$(LIB64SUFFIX); echo $$?))
|
|
SYSLIBS += -L/opt/postgresql/lib$(LIB64SUFFIX)
|
|
endif
|
|
ifeq (0, $(shell test -e /opt/postgresql/lib$(LIB64SUFFIX); echo $$?))
|
|
SYSLIBS += -L/opt/postgresql/lib$(LIB64SUFFIX)
|
|
endif
|
|
SYSLIBS += -lpq
|
|
|
|
objects = Extractor Binder SessionImpl Connector \
|
|
PostgreSQLStatementImpl PostgreSQLException \
|
|
SessionHandle StatementExecutor PostgreSQLTypes Utility
|
|
|
|
target = PocoDataPostgreSQL
|
|
target_version = $(LIBVERSION)
|
|
target_libs = PocoData PocoFoundation
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|