You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
Add CMake build tree files
This commit is contained in:
14
tools/CMakeLists.txt
Normal file
14
tools/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
add_subdirectory(dbbuilder)
|
||||
add_subdirectory(editem)
|
||||
add_subdirectory(dbloadxml)
|
||||
add_subdirectory(getConfig)
|
||||
add_subdirectory(cplogger)
|
||||
add_subdirectory(clearShm)
|
||||
add_subdirectory(setConfig)
|
||||
add_subdirectory(configMgt)
|
||||
add_subdirectory(viewtablelock)
|
||||
add_subdirectory(cleartablelock)
|
||||
add_subdirectory(ddlcleanup)
|
||||
add_subdirectory(idbmeminfo)
|
||||
|
45
tools/brmtest/CMakeLists.txt
Normal file
45
tools/brmtest/CMakeLists.txt
Normal file
@ -0,0 +1,45 @@
|
||||
|
||||
include_directories(${KDE4_INCLUDES} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(brmtest_SRCS brmtest.cpp locks.cpp)
|
||||
|
||||
kde4_add_executable(brmtest ${brmtest_SRCS})
|
||||
|
||||
target_link_libraries(brmtest ${KDE4_KDECORE_LIBS} execplan joblist rowgroup dataconvert loggingcpp @boost_thread_lib@ brm messageqcpp rwlock configcpp xml2 joiner oamcpp snmpmanager @boost_filesystem_lib@ @boost_date_time_lib@ multicast funcexp)
|
||||
|
||||
install(TARGETS brmtest ${INSTALL_TARGETS_DEFAULT_ARGS})
|
||||
|
||||
|
||||
########### install files ###############
|
||||
|
||||
|
||||
|
||||
|
||||
#original Makefile.am contents follow:
|
||||
|
||||
## $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
### Process this file with automake to produce Makefile.in
|
||||
#
|
||||
#AM_CPPFLAGS = $(idb_cppflags)
|
||||
#AM_CFLAGS = $(idb_cflags)
|
||||
#AM_CXXFLAGS = $(idb_cxxflags)
|
||||
#AM_LDFLAGS = $(idb_ldflags)
|
||||
#bin_PROGRAMS = brmtest
|
||||
#brmtest_SOURCES = brmtest.cpp locks.cpp
|
||||
#brmtest_CPPFLAGS = -I@prefix@/Calpont/include -I/usr/include/libxml2 $(AM_CPPFLAGS)
|
||||
#brmtest_LDFLAGS = @idb_common_ldflags@ -lexecplan -ljoblist -lrowgroup -ldataconvert -lloggingcpp -l@boost_thread_lib@ -lbrm -lmessageqcpp -lrwlock -lconfigcpp -lxml2 -ljoiner \
|
||||
#-loamcpp -lsnmpmanager -l@boost_filesystem_lib@ -l@boost_date_time_lib@ @netsnmp_libs@ -lmulticast -lfuncexp $(AM_LDFLAGS)
|
||||
#
|
||||
#test:
|
||||
#
|
||||
#coverage:
|
||||
#
|
||||
#leakcheck:
|
||||
#
|
||||
#docs:
|
||||
#
|
||||
#bootstrap: install-data-am
|
||||
#
|
58
tools/cfread/CMakeLists.txt
Normal file
58
tools/cfread/CMakeLists.txt
Normal file
@ -0,0 +1,58 @@
|
||||
|
||||
include_directories(${KDE4_INCLUDES} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(cfread_SRCS cfread.cpp)
|
||||
|
||||
kde4_add_executable(cfread ${cfread_SRCS})
|
||||
|
||||
target_link_libraries(cfread ${KDE4_KDECORE_LIBS} pthread writeengine brm rwlock messageqcpp dl configcpp xml2 loggingcpp cacheutils boost_idb pthread rt)
|
||||
|
||||
install(TARGETS cfread ${INSTALL_TARGETS_DEFAULT_ARGS})
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(mtread_SRCS mtread.cpp)
|
||||
|
||||
kde4_add_executable(mtread ${mtread_SRCS})
|
||||
|
||||
target_link_libraries(mtread ${KDE4_KDECORE_LIBS} pthread writeengine brm rwlock messageqcpp dl configcpp xml2 loggingcpp cacheutils boost_idb pthread rt)
|
||||
|
||||
install(TARGETS mtread ${INSTALL_TARGETS_DEFAULT_ARGS})
|
||||
|
||||
|
||||
########### install files ###############
|
||||
|
||||
|
||||
|
||||
|
||||
#original Makefile.am contents follow:
|
||||
|
||||
## $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
### Process this file with automake to produce Makefile.in
|
||||
#
|
||||
#AM_CPPFLAGS = $(idb_cppflags)
|
||||
#AM_CFLAGS = $(idb_cflags)
|
||||
#AM_CXXFLAGS = $(idb_cxxflags)
|
||||
#AM_LDFLAGS = $(idb_ldflags)
|
||||
#bin_PROGRAMS = cfread mtread
|
||||
#cfread_SOURCES = cfread.cpp
|
||||
#cfread_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
#cfread_LDFLAGS = @idb_common_ldflags@ -lpthread -lwriteengine -lbrm -lrwlock -lmessageqcpp -ldl -lconfigcpp -lxml2 -lloggingcpp -lcacheutils -lboost_idb -lpthread -lrt $(AM_LDFLAGS)
|
||||
#mtread_SOURCES = mtread.cpp
|
||||
#mtread_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
#mtread_LDFLAGS = @idb_common_ldflags@ -lpthread -lwriteengine -lbrm -lrwlock -lmessageqcpp -ldl -lconfigcpp -lxml2 -lloggingcpp -lcacheutils -lboost_idb -lpthread -lrt $(AM_LDFLAGS)
|
||||
#
|
||||
#test:
|
||||
#
|
||||
#coverage:
|
||||
#
|
||||
#leakcheck:
|
||||
#
|
||||
#docs:
|
||||
#
|
||||
#bootstrap: install-data-am
|
||||
#
|
14
tools/clearShm/CMakeLists.txt
Normal file
14
tools/clearShm/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(clearShm_SRCS main.cpp)
|
||||
|
||||
add_executable(clearShm ${clearShm_SRCS})
|
||||
|
||||
target_link_libraries(clearShm ${ENGINE_LDFLAGS} ${ENGINE_EXEC_LIBS})
|
||||
|
||||
install(TARGETS clearShm DESTINATION ${ENGINE_BINDIR})
|
||||
|
14
tools/cleartablelock/CMakeLists.txt
Normal file
14
tools/cleartablelock/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(cleartablelock_SRCS cleartablelock.cpp cleartablelockthread.cpp)
|
||||
|
||||
add_executable(cleartablelock ${cleartablelock_SRCS})
|
||||
|
||||
target_link_libraries(cleartablelock ${ENGINE_LDFLAGS} ${ENGINE_WRITE_LIBS})
|
||||
|
||||
install(TARGETS cleartablelock DESTINATION ${ENGINE_BINDIR})
|
||||
|
36
tools/configMgt/CMakeLists.txt
Normal file
36
tools/configMgt/CMakeLists.txt
Normal file
@ -0,0 +1,36 @@
|
||||
|
||||
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(autoInstaller_SRCS autoInstaller.cpp)
|
||||
|
||||
add_executable(autoInstaller ${autoInstaller_SRCS})
|
||||
|
||||
target_link_libraries(autoInstaller ${ENGINE_LDFLAGS} ${ENGINE_EXEC_LIBS} readline ncurses)
|
||||
|
||||
install(TARGETS autoInstaller DESTINATION ${ENGINE_BINDIR})
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(autoConfigure_SRCS autoConfigure.cpp)
|
||||
|
||||
add_executable(autoConfigure ${autoConfigure_SRCS})
|
||||
|
||||
target_link_libraries(autoConfigure ${ENGINE_LDFLAGS} ${ENGINE_EXEC_LIBS})
|
||||
|
||||
install(TARGETS autoConfigure DESTINATION ${ENGINE_BINDIR})
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(svnQuery_SRCS svnQuery.cpp)
|
||||
|
||||
add_executable(svnQuery ${svnQuery_SRCS})
|
||||
|
||||
target_link_libraries(svnQuery ${ENGINE_LDFLAGS} ${ENGINE_EXEC_LIBS})
|
||||
|
||||
install(TARGETS svnQuery DESTINATION ${ENGINE_BINDIR})
|
||||
|
14
tools/cplogger/CMakeLists.txt
Normal file
14
tools/cplogger/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(cplogger_SRCS main.cpp)
|
||||
|
||||
add_executable(cplogger ${cplogger_SRCS})
|
||||
|
||||
target_link_libraries(cplogger ${ENGINE_LDFLAGS} ${ENGINE_EXEC_LIBS})
|
||||
|
||||
install(TARGETS cplogger DESTINATION ${ENGINE_BINDIR})
|
||||
|
14
tools/dbbuilder/CMakeLists.txt
Normal file
14
tools/dbbuilder/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(dbbuilder_SRCS dbbuilder.cpp systemcatalog.cpp)
|
||||
|
||||
add_executable(dbbuilder ${dbbuilder_SRCS})
|
||||
|
||||
target_link_libraries(dbbuilder ${ENGINE_LDFLAGS} ${ENGINE_WRITE_LIBS})
|
||||
|
||||
install(TARGETS dbbuilder DESTINATION ${ENGINE_BINDIR})
|
||||
|
19
tools/dbloadxml/CMakeLists.txt
Normal file
19
tools/dbloadxml/CMakeLists.txt
Normal file
@ -0,0 +1,19 @@
|
||||
|
||||
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(dbload_STAT_SRCS inputmgr.cpp)
|
||||
|
||||
add_library(dbload STATIC ${dbload_STAT_SRCS})
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(colxml_SRCS colxml.cpp)
|
||||
|
||||
add_executable(colxml ${colxml_SRCS})
|
||||
|
||||
target_link_libraries(colxml ${ENGINE_LDFLAGS} dbload ${ENGINE_WRITE_LIBS})
|
||||
|
||||
install(TARGETS colxml DESTINATION ${ENGINE_BINDIR})
|
||||
|
14
tools/ddlcleanup/CMakeLists.txt
Normal file
14
tools/ddlcleanup/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(ddlcleanup_SRCS ddlcleanup.cpp)
|
||||
|
||||
add_executable(ddlcleanup ${ddlcleanup_SRCS})
|
||||
|
||||
target_link_libraries(ddlcleanup ${ENGINE_LDFLAGS} ${ENGINE_WRITE_LIBS} ddlcleanuputil)
|
||||
|
||||
install(TARGETS ddlcleanup DESTINATION ${ENGINE_BINDIR})
|
||||
|
61
tools/ddldriver/CMakeLists.txt
Normal file
61
tools/ddldriver/CMakeLists.txt
Normal file
@ -0,0 +1,61 @@
|
||||
|
||||
include_directories(${KDE4_INCLUDES} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(ddldriver_SRCS ddldriver.cpp)
|
||||
|
||||
kde4_add_executable(ddldriver ${ddldriver_SRCS})
|
||||
|
||||
target_link_libraries(ddldriver ${KDE4_KDECORE_LIBS})
|
||||
|
||||
install(TARGETS ddldriver ${INSTALL_TARGETS_DEFAULT_ARGS})
|
||||
|
||||
|
||||
########### install files ###############
|
||||
|
||||
|
||||
|
||||
|
||||
#original Makefile.am contents follow:
|
||||
|
||||
## Copyright (C) 2014 InfiniDB, Inc.
|
||||
##
|
||||
## This program is free software; you can redistribute it and/or
|
||||
## modify it under the terms of the GNU General Public License
|
||||
## as published by the Free Software Foundation; version 2 of
|
||||
## the License.
|
||||
##
|
||||
## This program is distributed in the hope that it will be useful,
|
||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
## GNU General Public License for more details.
|
||||
##
|
||||
## You should have received a copy of the GNU General Public License
|
||||
## along with this program; if not, write to the Free Software
|
||||
## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
## MA 02110-1301, USA.
|
||||
#
|
||||
## $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
### Process this file with automake to produce Makefile.in
|
||||
#
|
||||
#AM_CPPFLAGS = $(idb_cppflags)
|
||||
#AM_CFLAGS = $(idb_cflags)
|
||||
#AM_CXXFLAGS = $(idb_cxxflags)
|
||||
#AM_LDFLAGS = $(idb_ldflags)
|
||||
#bin_PROGRAMS = ddldriver
|
||||
#ddldriver_SOURCES = ddldriver.cpp
|
||||
#ddldriver_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
#ddldriver_LDFLAGS = @idb_common_ldflags@ @idb_write_libs@ @idb_common_libs@ @netsnmp_libs@ $(AM_LDFLAGS)
|
||||
#
|
||||
#test:
|
||||
#
|
||||
#coverage:
|
||||
#
|
||||
#leakcheck:
|
||||
#
|
||||
#docs:
|
||||
#
|
||||
#bootstrap: install-data-am
|
||||
#
|
61
tools/dmldriver/CMakeLists.txt
Normal file
61
tools/dmldriver/CMakeLists.txt
Normal file
@ -0,0 +1,61 @@
|
||||
|
||||
include_directories(${KDE4_INCLUDES} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(dmldriver_SRCS dmldriver.cpp tpchrf2.cpp dmlif.cpp)
|
||||
|
||||
kde4_add_executable(dmldriver ${dmldriver_SRCS})
|
||||
|
||||
target_link_libraries(dmldriver ${KDE4_KDECORE_LIBS})
|
||||
|
||||
install(TARGETS dmldriver ${INSTALL_TARGETS_DEFAULT_ARGS})
|
||||
|
||||
|
||||
########### install files ###############
|
||||
|
||||
|
||||
|
||||
|
||||
#original Makefile.am contents follow:
|
||||
|
||||
## Copyright (C) 2014 InfiniDB, Inc.
|
||||
##
|
||||
## This program is free software; you can redistribute it and/or
|
||||
## modify it under the terms of the GNU General Public License
|
||||
## as published by the Free Software Foundation; version 2 of
|
||||
## the License.
|
||||
##
|
||||
## This program is distributed in the hope that it will be useful,
|
||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
## GNU General Public License for more details.
|
||||
##
|
||||
## You should have received a copy of the GNU General Public License
|
||||
## along with this program; if not, write to the Free Software
|
||||
## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
## MA 02110-1301, USA.
|
||||
#
|
||||
## $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
### Process this file with automake to produce Makefile.in
|
||||
#
|
||||
#AM_CPPFLAGS = $(idb_cppflags)
|
||||
#AM_CFLAGS = $(idb_cflags)
|
||||
#AM_CXXFLAGS = $(idb_cxxflags)
|
||||
#AM_LDFLAGS = $(idb_ldflags)
|
||||
#bin_PROGRAMS = dmldriver
|
||||
#dmldriver_SOURCES = dmldriver.cpp tpchrf2.cpp dmlif.cpp
|
||||
#dmldriver_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
#dmldriver_LDFLAGS = @idb_common_ldflags@ @idb_write_libs@ @idb_common_libs@ @netsnmp_libs@ $(AM_LDFLAGS)
|
||||
#
|
||||
#test:
|
||||
#
|
||||
#coverage:
|
||||
#
|
||||
#leakcheck:
|
||||
#
|
||||
#docs:
|
||||
#
|
||||
#bootstrap: install-data-am
|
||||
#
|
14
tools/editem/CMakeLists.txt
Normal file
14
tools/editem/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(editem_SRCS editem.cpp)
|
||||
|
||||
add_executable(editem ${editem_SRCS})
|
||||
|
||||
target_link_libraries(editem ${ENGINE_LDFLAGS} ${ENGINE_EXEC_LIBS})
|
||||
|
||||
install(TARGETS editem DESTINATION ${ENGINE_BINDIR})
|
||||
|
47
tools/evalidx/CMakeLists.txt
Normal file
47
tools/evalidx/CMakeLists.txt
Normal file
@ -0,0 +1,47 @@
|
||||
|
||||
include_directories(${KDE4_INCLUDES} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(evalidx_SRCS evalidx.cpp)
|
||||
|
||||
kde4_add_executable(evalidx ${evalidx_SRCS})
|
||||
|
||||
target_link_libraries(evalidx ${KDE4_KDECORE_LIBS} dmlpackageproc execplan joblist rowgroup writeengine brm dataconvert cacheutils dmlpackage messageqcpp loggingcpp configcpp rwlock @boost_thread_lib@ xml2 joiner oamcpp snmpmanager @boost_filesystem_lib@ @boost_date_time_lib@ multicast funcexp)
|
||||
|
||||
install(TARGETS evalidx ${INSTALL_TARGETS_DEFAULT_ARGS})
|
||||
|
||||
|
||||
########### install files ###############
|
||||
|
||||
|
||||
|
||||
|
||||
#original Makefile.am contents follow:
|
||||
|
||||
## $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
### Process this file with automake to produce Makefile.in
|
||||
#
|
||||
#AM_CPPFLAGS = $(idb_cppflags)
|
||||
#AM_CFLAGS = $(idb_cflags)
|
||||
#AM_CXXFLAGS = $(idb_cxxflags)
|
||||
#AM_LDFLAGS = $(idb_ldflags)
|
||||
#bin_PROGRAMS = evalidx
|
||||
#evalidx_SOURCES = evalidx.cpp
|
||||
#evalidx_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
#evalidx_LDFLAGS = @idb_common_ldflags@ -ldmlpackageproc -lexecplan -ljoblist -lrowgroup -lwriteengine -lbrm \
|
||||
#-ldataconvert -lcacheutils -ldmlpackage -lmessageqcpp -lloggingcpp -lconfigcpp -lrwlock -l@boost_thread_lib@ -lxml2 \
|
||||
#-ljoiner -loamcpp -lsnmpmanager -l@boost_filesystem_lib@ -l@boost_date_time_lib@ @netsnmp_libs@ -lmulticast -lfuncexp \
|
||||
#$(AM_LDFLAGS)
|
||||
#
|
||||
#test:
|
||||
#
|
||||
#coverage:
|
||||
#
|
||||
#leakcheck:
|
||||
#
|
||||
#docs:
|
||||
#
|
||||
#bootstrap: install-data-am
|
||||
#
|
14
tools/getConfig/CMakeLists.txt
Normal file
14
tools/getConfig/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(getConfig_SRCS main.cpp)
|
||||
|
||||
add_executable(getConfig ${getConfig_SRCS})
|
||||
|
||||
target_link_libraries(getConfig ${ENGINE_LDFLAGS} ${ENGINE_EXEC_LIBS})
|
||||
|
||||
install(TARGETS getConfig DESTINATION ${ENGINE_BINDIR})
|
||||
|
14
tools/idbmeminfo/CMakeLists.txt
Normal file
14
tools/idbmeminfo/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(idbmeminfo_SRCS idbmeminfo.cpp)
|
||||
|
||||
add_executable(idbmeminfo ${idbmeminfo_SRCS})
|
||||
|
||||
target_link_libraries(idbmeminfo ${ENGINE_LDFLAGS})
|
||||
|
||||
install(TARGETS idbmeminfo DESTINATION ${ENGINE_BINDIR})
|
||||
|
82
tools/qfe/CMakeLists.txt
Normal file
82
tools/qfe/CMakeLists.txt
Normal file
@ -0,0 +1,82 @@
|
||||
|
||||
include_directories(${KDE4_INCLUDES} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(QFE_SRCS
|
||||
cseputils.cpp
|
||||
ddlstmts.cpp
|
||||
parsequery.cpp
|
||||
returnedrows.cpp
|
||||
sendcsep.cpp
|
||||
server.cpp
|
||||
socketio.cpp
|
||||
qfelexer.lpp
|
||||
qfeparser.ypp)
|
||||
|
||||
kde4_add_executable(QFE ${QFE_SRCS})
|
||||
|
||||
target_link_libraries(QFE ${KDE4_KDECORE_LIBS})
|
||||
|
||||
install(TARGETS QFE ${INSTALL_TARGETS_DEFAULT_ARGS})
|
||||
|
||||
|
||||
########### install files ###############
|
||||
|
||||
|
||||
|
||||
|
||||
#original Makefile.am contents follow:
|
||||
|
||||
## Copyright (C) 2014 InfiniDB, Inc.
|
||||
##
|
||||
## This program is free software; you can redistribute it and/or
|
||||
## modify it under the terms of the GNU General Public License
|
||||
## as published by the Free Software Foundation; version 2 of
|
||||
## the License.
|
||||
##
|
||||
## This program is distributed in the hope that it will be useful,
|
||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
## GNU General Public License for more details.
|
||||
##
|
||||
## You should have received a copy of the GNU General Public License
|
||||
## along with this program; if not, write to the Free Software
|
||||
## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
## MA 02110-1301, USA.
|
||||
#
|
||||
## $Id$
|
||||
### Process this file with automake to produce Makefile.in
|
||||
#
|
||||
#AM_CPPFLAGS = $(idb_cppflags)
|
||||
#AM_CFLAGS = $(idb_cflags)
|
||||
#AM_CXXFLAGS = $(idb_cxxflags)
|
||||
#AM_LDFLAGS = $(idb_ldflags)
|
||||
#AM_YFLAGS = -d -p qfe
|
||||
#AM_LFLAGS = -i -Pqfe -olex.yy.c
|
||||
#bin_PROGRAMS = QFE
|
||||
#QFE_SOURCES = \
|
||||
#cseputils.cpp \
|
||||
#ddlstmts.cpp \
|
||||
#parsequery.cpp \
|
||||
#returnedrows.cpp \
|
||||
#sendcsep.cpp \
|
||||
#server.cpp \
|
||||
#socketio.cpp \
|
||||
#qfelexer.lpp \
|
||||
#qfeparser.ypp
|
||||
#QFE_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
#QFE_LDFLAGS = @idb_common_ldflags@ @idb_write_libs@ @idb_exec_libs@ $(AM_LDFLAGS)
|
||||
#BUILT_SOURCES = qfeparser.cpp qfelexer.cpp qfeparser.h
|
||||
#
|
||||
#test:
|
||||
#
|
||||
#coverage:
|
||||
#
|
||||
#leakcheck:
|
||||
#
|
||||
#docs:
|
||||
#
|
||||
#bootstrap: install-data-am
|
||||
#
|
44
tools/sendPlan/CMakeLists.txt
Normal file
44
tools/sendPlan/CMakeLists.txt
Normal file
@ -0,0 +1,44 @@
|
||||
|
||||
include_directories(${KDE4_INCLUDES} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(sendPlan_SRCS sendplan.cpp)
|
||||
|
||||
kde4_add_executable(sendPlan ${sendPlan_SRCS})
|
||||
|
||||
target_link_libraries(sendPlan ${KDE4_KDECORE_LIBS})
|
||||
|
||||
install(TARGETS sendPlan ${INSTALL_TARGETS_DEFAULT_ARGS})
|
||||
|
||||
|
||||
########### install files ###############
|
||||
|
||||
|
||||
|
||||
|
||||
#original Makefile.am contents follow:
|
||||
|
||||
## $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $
|
||||
### Process this file with automake to produce Makefile.in
|
||||
#
|
||||
#AM_CPPFLAGS = $(idb_cppflags)
|
||||
#AM_CFLAGS = $(idb_cflags)
|
||||
#AM_CXXFLAGS = $(idb_cxxflags)
|
||||
#AM_LDFLAGS = $(idb_ldflags)
|
||||
#bin_PROGRAMS = sendPlan
|
||||
#sendPlan_SOURCES = sendplan.cpp
|
||||
#sendPlan_CPPFLAGS = @idb_common_includes@ $(AM_CPPFLAGS)
|
||||
#sendPlan_LDFLAGS = @idb_common_ldflags@ @idb_exec_libs@ $(AM_LDFLAGS)
|
||||
#
|
||||
#test:
|
||||
#
|
||||
#coverage:
|
||||
#
|
||||
#leakcheck:
|
||||
#
|
||||
#docs:
|
||||
#
|
||||
#bootstrap: install-data-am
|
||||
#
|
16
tools/setConfig/CMakeLists.txt
Normal file
16
tools/setConfig/CMakeLists.txt
Normal file
@ -0,0 +1,16 @@
|
||||
|
||||
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(setConfig_SRCS main.cpp)
|
||||
|
||||
add_executable(setConfig ${setConfig_SRCS})
|
||||
|
||||
target_link_libraries(setConfig ${ENGINE_LDFLAGS} ${ENGINE_EXEC_LIBS})
|
||||
|
||||
install(TARGETS setConfig DESTINATION ${ENGINE_BINDIR})
|
||||
|
||||
install(FILES configxml.sh DESTINATION ${ENGINE_BINDIR})
|
||||
|
61
tools/vbgen/CMakeLists.txt
Normal file
61
tools/vbgen/CMakeLists.txt
Normal file
@ -0,0 +1,61 @@
|
||||
|
||||
include_directories(${KDE4_INCLUDES} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(vbgen_SRCS vbgen.cpp myrand.cpp)
|
||||
|
||||
kde4_add_executable(vbgen ${vbgen_SRCS})
|
||||
|
||||
target_link_libraries(vbgen ${KDE4_KDECORE_LIBS})
|
||||
|
||||
install(TARGETS vbgen ${INSTALL_TARGETS_DEFAULT_ARGS})
|
||||
|
||||
|
||||
########### install files ###############
|
||||
|
||||
|
||||
|
||||
|
||||
#original Makefile.am contents follow:
|
||||
|
||||
## Copyright (C) 2014 InfiniDB, Inc.
|
||||
##
|
||||
## This program is free software; you can redistribute it and/or
|
||||
## modify it under the terms of the GNU General Public License
|
||||
## as published by the Free Software Foundation; version 2 of
|
||||
## the License.
|
||||
##
|
||||
## This program is distributed in the hope that it will be useful,
|
||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
## GNU General Public License for more details.
|
||||
##
|
||||
## You should have received a copy of the GNU General Public License
|
||||
## along with this program; if not, write to the Free Software
|
||||
## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
## MA 02110-1301, USA.
|
||||
#
|
||||
## $Id$
|
||||
### Process this file with automake to produce Makefile.in
|
||||
#
|
||||
#AM_CPPFLAGS = $(idb_cppflags)
|
||||
#AM_CFLAGS = $(idb_cflags)
|
||||
#AM_CXXFLAGS = $(idb_cxxflags)
|
||||
#AM_LDFLAGS = $(idb_ldflags)
|
||||
#bin_PROGRAMS = vbgen
|
||||
#vbgen_SOURCES = vbgen.cpp myrand.cpp
|
||||
#vbgen_CPPFLAGS = $(AM_CPPFLAGS)
|
||||
#vbgen_LDFLAGS = $(AM_LDFLAGS)
|
||||
#
|
||||
#test:
|
||||
#
|
||||
#coverage:
|
||||
#
|
||||
#leakcheck:
|
||||
#
|
||||
#docs:
|
||||
#
|
||||
#bootstrap: install-data-am
|
||||
#
|
14
tools/viewtablelock/CMakeLists.txt
Normal file
14
tools/viewtablelock/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
||||
|
||||
|
||||
########### next target ###############
|
||||
|
||||
set(viewtablelock_SRCS viewtablelock.cpp)
|
||||
|
||||
add_executable(viewtablelock ${viewtablelock_SRCS})
|
||||
|
||||
target_link_libraries(viewtablelock ${ENGINE_LDFLAGS} ${ENGINE_EXEC_LIBS})
|
||||
|
||||
install(TARGETS viewtablelock DESTINATION ${ENGINE_BINDIR})
|
||||
|
Reference in New Issue
Block a user