1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/c++/sql-dk/.dep.inc Fri Jan 05 23:53:23 2018 +0100
1.3 @@ -0,0 +1,5 @@
1.4 +# This code depends on make tool being used
1.5 +DEPFILES=$(wildcard $(addsuffix .d, ${OBJECTFILES} ${TESTOBJECTFILES}))
1.6 +ifneq (${DEPFILES},)
1.7 +include ${DEPFILES}
1.8 +endif
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
2.2 +++ b/c++/sql-dk/CLIStarter.cpp Fri Jan 05 23:53:23 2018 +0100
2.3 @@ -0,0 +1,34 @@
2.4 +/**
2.5 + * SQL-DK
2.6 + * Copyright © 2018 František Kučera (frantovo.cz)
2.7 + *
2.8 + * This program is free software: you can redistribute it and/or modify
2.9 + * it under the terms of the GNU General Public License as published by
2.10 + * the Free Software Foundation, either version 3 of the License, or
2.11 + * (at your option) any later version.
2.12 + *
2.13 + * This program is distributed in the hope that it will be useful,
2.14 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
2.15 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2.16 + * GNU General Public License for more details.
2.17 + *
2.18 + * You should have received a copy of the GNU General Public License
2.19 + * along with this program. If not, see <http://www.gnu.org/licenses/>.
2.20 + */
2.21 +
2.22 +#include <cstdlib>
2.23 +#include <iostream>
2.24 +
2.25 +using namespace std;
2.26 +
2.27 +int main(int argc, char* argv[]) {
2.28 +
2.29 + for (int i = 0; i < argc; i++) {
2.30 + auto arg = argv[i];
2.31 + wcout << arg << endl;
2.32 + }
2.33 +
2.34 +
2.35 + return 0;
2.36 +}
2.37 +
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
3.2 +++ b/c++/sql-dk/Makefile Fri Jan 05 23:53:23 2018 +0100
3.3 @@ -0,0 +1,128 @@
3.4 +#
3.5 +# There exist several targets which are by default empty and which can be
3.6 +# used for execution of your targets. These targets are usually executed
3.7 +# before and after some main targets. They are:
3.8 +#
3.9 +# .build-pre: called before 'build' target
3.10 +# .build-post: called after 'build' target
3.11 +# .clean-pre: called before 'clean' target
3.12 +# .clean-post: called after 'clean' target
3.13 +# .clobber-pre: called before 'clobber' target
3.14 +# .clobber-post: called after 'clobber' target
3.15 +# .all-pre: called before 'all' target
3.16 +# .all-post: called after 'all' target
3.17 +# .help-pre: called before 'help' target
3.18 +# .help-post: called after 'help' target
3.19 +#
3.20 +# Targets beginning with '.' are not intended to be called on their own.
3.21 +#
3.22 +# Main targets can be executed directly, and they are:
3.23 +#
3.24 +# build build a specific configuration
3.25 +# clean remove built files from a configuration
3.26 +# clobber remove all built files
3.27 +# all build all configurations
3.28 +# help print help mesage
3.29 +#
3.30 +# Targets .build-impl, .clean-impl, .clobber-impl, .all-impl, and
3.31 +# .help-impl are implemented in nbproject/makefile-impl.mk.
3.32 +#
3.33 +# Available make variables:
3.34 +#
3.35 +# CND_BASEDIR base directory for relative paths
3.36 +# CND_DISTDIR default top distribution directory (build artifacts)
3.37 +# CND_BUILDDIR default top build directory (object files, ...)
3.38 +# CONF name of current configuration
3.39 +# CND_PLATFORM_${CONF} platform name (current configuration)
3.40 +# CND_ARTIFACT_DIR_${CONF} directory of build artifact (current configuration)
3.41 +# CND_ARTIFACT_NAME_${CONF} name of build artifact (current configuration)
3.42 +# CND_ARTIFACT_PATH_${CONF} path to build artifact (current configuration)
3.43 +# CND_PACKAGE_DIR_${CONF} directory of package (current configuration)
3.44 +# CND_PACKAGE_NAME_${CONF} name of package (current configuration)
3.45 +# CND_PACKAGE_PATH_${CONF} path to package (current configuration)
3.46 +#
3.47 +# NOCDDL
3.48 +
3.49 +
3.50 +# Environment
3.51 +MKDIR=mkdir
3.52 +CP=cp
3.53 +CCADMIN=CCadmin
3.54 +
3.55 +
3.56 +# build
3.57 +build: .build-post
3.58 +
3.59 +.build-pre:
3.60 +# Add your pre 'build' code here...
3.61 +
3.62 +.build-post: .build-impl
3.63 +# Add your post 'build' code here...
3.64 +
3.65 +
3.66 +# clean
3.67 +clean: .clean-post
3.68 +
3.69 +.clean-pre:
3.70 +# Add your pre 'clean' code here...
3.71 +
3.72 +.clean-post: .clean-impl
3.73 +# Add your post 'clean' code here...
3.74 +
3.75 +
3.76 +# clobber
3.77 +clobber: .clobber-post
3.78 +
3.79 +.clobber-pre:
3.80 +# Add your pre 'clobber' code here...
3.81 +
3.82 +.clobber-post: .clobber-impl
3.83 +# Add your post 'clobber' code here...
3.84 +
3.85 +
3.86 +# all
3.87 +all: .all-post
3.88 +
3.89 +.all-pre:
3.90 +# Add your pre 'all' code here...
3.91 +
3.92 +.all-post: .all-impl
3.93 +# Add your post 'all' code here...
3.94 +
3.95 +
3.96 +# build tests
3.97 +build-tests: .build-tests-post
3.98 +
3.99 +.build-tests-pre:
3.100 +# Add your pre 'build-tests' code here...
3.101 +
3.102 +.build-tests-post: .build-tests-impl
3.103 +# Add your post 'build-tests' code here...
3.104 +
3.105 +
3.106 +# run tests
3.107 +test: .test-post
3.108 +
3.109 +.test-pre: build-tests
3.110 +# Add your pre 'test' code here...
3.111 +
3.112 +.test-post: .test-impl
3.113 +# Add your post 'test' code here...
3.114 +
3.115 +
3.116 +# help
3.117 +help: .help-post
3.118 +
3.119 +.help-pre:
3.120 +# Add your pre 'help' code here...
3.121 +
3.122 +.help-post: .help-impl
3.123 +# Add your post 'help' code here...
3.124 +
3.125 +
3.126 +
3.127 +# include project implementation makefile
3.128 +include nbproject/Makefile-impl.mk
3.129 +
3.130 +# include project make variables
3.131 +include nbproject/Makefile-variables.mk
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
4.2 +++ b/c++/sql-dk/nbproject/Makefile-Debug.mk Fri Jan 05 23:53:23 2018 +0100
4.3 @@ -0,0 +1,83 @@
4.4 +#
4.5 +# Generated Makefile - do not edit!
4.6 +#
4.7 +# Edit the Makefile in the project folder instead (../Makefile). Each target
4.8 +# has a -pre and a -post target defined where you can add customized code.
4.9 +#
4.10 +# This makefile implements configuration specific macros and targets.
4.11 +
4.12 +
4.13 +# Environment
4.14 +MKDIR=mkdir
4.15 +CP=cp
4.16 +GREP=grep
4.17 +NM=nm
4.18 +CCADMIN=CCadmin
4.19 +RANLIB=ranlib
4.20 +CC=gcc
4.21 +CCC=g++
4.22 +CXX=g++
4.23 +FC=gfortran
4.24 +AS=as
4.25 +
4.26 +# Macros
4.27 +CND_PLATFORM=GNU-Linux
4.28 +CND_DLIB_EXT=so
4.29 +CND_CONF=Debug
4.30 +CND_DISTDIR=dist
4.31 +CND_BUILDDIR=build
4.32 +
4.33 +# Include project Makefile
4.34 +include Makefile
4.35 +
4.36 +# Object Directory
4.37 +OBJECTDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}
4.38 +
4.39 +# Object Files
4.40 +OBJECTFILES= \
4.41 + ${OBJECTDIR}/CLIStarter.o
4.42 +
4.43 +
4.44 +# C Compiler Flags
4.45 +CFLAGS=
4.46 +
4.47 +# CC Compiler Flags
4.48 +CCFLAGS=
4.49 +CXXFLAGS=
4.50 +
4.51 +# Fortran Compiler Flags
4.52 +FFLAGS=
4.53 +
4.54 +# Assembler Flags
4.55 +ASFLAGS=
4.56 +
4.57 +# Link Libraries and Options
4.58 +LDLIBSOPTIONS=
4.59 +
4.60 +# Build Targets
4.61 +.build-conf: ${BUILD_SUBPROJECTS}
4.62 + "${MAKE}" -f nbproject/Makefile-${CND_CONF}.mk ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/sql-dk
4.63 +
4.64 +${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/sql-dk: ${OBJECTFILES}
4.65 + ${MKDIR} -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}
4.66 + ${LINK.cc} -o ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/sql-dk ${OBJECTFILES} ${LDLIBSOPTIONS}
4.67 +
4.68 +${OBJECTDIR}/CLIStarter.o: CLIStarter.cpp
4.69 + ${MKDIR} -p ${OBJECTDIR}
4.70 + ${RM} "$@.d"
4.71 + $(COMPILE.cc) -g -std=c++14 -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/CLIStarter.o CLIStarter.cpp
4.72 +
4.73 +# Subprojects
4.74 +.build-subprojects:
4.75 +
4.76 +# Clean Targets
4.77 +.clean-conf: ${CLEAN_SUBPROJECTS}
4.78 + ${RM} -r ${CND_BUILDDIR}/${CND_CONF}
4.79 +
4.80 +# Subprojects
4.81 +.clean-subprojects:
4.82 +
4.83 +# Enable dependency checking
4.84 +.dep.inc: .depcheck-impl
4.85 +
4.86 +include .dep.inc
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
5.2 +++ b/c++/sql-dk/nbproject/Makefile-Release.mk Fri Jan 05 23:53:23 2018 +0100
5.3 @@ -0,0 +1,83 @@
5.4 +#
5.5 +# Generated Makefile - do not edit!
5.6 +#
5.7 +# Edit the Makefile in the project folder instead (../Makefile). Each target
5.8 +# has a -pre and a -post target defined where you can add customized code.
5.9 +#
5.10 +# This makefile implements configuration specific macros and targets.
5.11 +
5.12 +
5.13 +# Environment
5.14 +MKDIR=mkdir
5.15 +CP=cp
5.16 +GREP=grep
5.17 +NM=nm
5.18 +CCADMIN=CCadmin
5.19 +RANLIB=ranlib
5.20 +CC=gcc
5.21 +CCC=g++
5.22 +CXX=g++
5.23 +FC=gfortran
5.24 +AS=as
5.25 +
5.26 +# Macros
5.27 +CND_PLATFORM=GNU-Linux
5.28 +CND_DLIB_EXT=so
5.29 +CND_CONF=Release
5.30 +CND_DISTDIR=dist
5.31 +CND_BUILDDIR=build
5.32 +
5.33 +# Include project Makefile
5.34 +include Makefile
5.35 +
5.36 +# Object Directory
5.37 +OBJECTDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}
5.38 +
5.39 +# Object Files
5.40 +OBJECTFILES= \
5.41 + ${OBJECTDIR}/CLIStarter.o
5.42 +
5.43 +
5.44 +# C Compiler Flags
5.45 +CFLAGS=
5.46 +
5.47 +# CC Compiler Flags
5.48 +CCFLAGS=
5.49 +CXXFLAGS=
5.50 +
5.51 +# Fortran Compiler Flags
5.52 +FFLAGS=
5.53 +
5.54 +# Assembler Flags
5.55 +ASFLAGS=
5.56 +
5.57 +# Link Libraries and Options
5.58 +LDLIBSOPTIONS=
5.59 +
5.60 +# Build Targets
5.61 +.build-conf: ${BUILD_SUBPROJECTS}
5.62 + "${MAKE}" -f nbproject/Makefile-${CND_CONF}.mk ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/sql-dk
5.63 +
5.64 +${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/sql-dk: ${OBJECTFILES}
5.65 + ${MKDIR} -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}
5.66 + ${LINK.cc} -o ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/sql-dk ${OBJECTFILES} ${LDLIBSOPTIONS}
5.67 +
5.68 +${OBJECTDIR}/CLIStarter.o: CLIStarter.cpp
5.69 + ${MKDIR} -p ${OBJECTDIR}
5.70 + ${RM} "$@.d"
5.71 + $(COMPILE.cc) -O2 -std=c++14 -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/CLIStarter.o CLIStarter.cpp
5.72 +
5.73 +# Subprojects
5.74 +.build-subprojects:
5.75 +
5.76 +# Clean Targets
5.77 +.clean-conf: ${CLEAN_SUBPROJECTS}
5.78 + ${RM} -r ${CND_BUILDDIR}/${CND_CONF}
5.79 +
5.80 +# Subprojects
5.81 +.clean-subprojects:
5.82 +
5.83 +# Enable dependency checking
5.84 +.dep.inc: .depcheck-impl
5.85 +
5.86 +include .dep.inc
6.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
6.2 +++ b/c++/sql-dk/nbproject/Makefile-impl.mk Fri Jan 05 23:53:23 2018 +0100
6.3 @@ -0,0 +1,133 @@
6.4 +#
6.5 +# Generated Makefile - do not edit!
6.6 +#
6.7 +# Edit the Makefile in the project folder instead (../Makefile). Each target
6.8 +# has a pre- and a post- target defined where you can add customization code.
6.9 +#
6.10 +# This makefile implements macros and targets common to all configurations.
6.11 +#
6.12 +# NOCDDL
6.13 +
6.14 +
6.15 +# Building and Cleaning subprojects are done by default, but can be controlled with the SUB
6.16 +# macro. If SUB=no, subprojects will not be built or cleaned. The following macro
6.17 +# statements set BUILD_SUB-CONF and CLEAN_SUB-CONF to .build-reqprojects-conf
6.18 +# and .clean-reqprojects-conf unless SUB has the value 'no'
6.19 +SUB_no=NO
6.20 +SUBPROJECTS=${SUB_${SUB}}
6.21 +BUILD_SUBPROJECTS_=.build-subprojects
6.22 +BUILD_SUBPROJECTS_NO=
6.23 +BUILD_SUBPROJECTS=${BUILD_SUBPROJECTS_${SUBPROJECTS}}
6.24 +CLEAN_SUBPROJECTS_=.clean-subprojects
6.25 +CLEAN_SUBPROJECTS_NO=
6.26 +CLEAN_SUBPROJECTS=${CLEAN_SUBPROJECTS_${SUBPROJECTS}}
6.27 +
6.28 +
6.29 +# Project Name
6.30 +PROJECTNAME=sql-dk
6.31 +
6.32 +# Active Configuration
6.33 +DEFAULTCONF=Debug
6.34 +CONF=${DEFAULTCONF}
6.35 +
6.36 +# All Configurations
6.37 +ALLCONFS=Debug Release
6.38 +
6.39 +
6.40 +# build
6.41 +.build-impl: .build-pre .validate-impl .depcheck-impl
6.42 + @#echo "=> Running $@... Configuration=$(CONF)"
6.43 + "${MAKE}" -f nbproject/Makefile-${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .build-conf
6.44 +
6.45 +
6.46 +# clean
6.47 +.clean-impl: .clean-pre .validate-impl .depcheck-impl
6.48 + @#echo "=> Running $@... Configuration=$(CONF)"
6.49 + "${MAKE}" -f nbproject/Makefile-${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .clean-conf
6.50 +
6.51 +
6.52 +# clobber
6.53 +.clobber-impl: .clobber-pre .depcheck-impl
6.54 + @#echo "=> Running $@..."
6.55 + for CONF in ${ALLCONFS}; \
6.56 + do \
6.57 + "${MAKE}" -f nbproject/Makefile-$${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .clean-conf; \
6.58 + done
6.59 +
6.60 +# all
6.61 +.all-impl: .all-pre .depcheck-impl
6.62 + @#echo "=> Running $@..."
6.63 + for CONF in ${ALLCONFS}; \
6.64 + do \
6.65 + "${MAKE}" -f nbproject/Makefile-$${CONF}.mk QMAKE=${QMAKE} SUBPROJECTS=${SUBPROJECTS} .build-conf; \
6.66 + done
6.67 +
6.68 +# build tests
6.69 +.build-tests-impl: .build-impl .build-tests-pre
6.70 + @#echo "=> Running $@... Configuration=$(CONF)"
6.71 + "${MAKE}" -f nbproject/Makefile-${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .build-tests-conf
6.72 +
6.73 +# run tests
6.74 +.test-impl: .build-tests-impl .test-pre
6.75 + @#echo "=> Running $@... Configuration=$(CONF)"
6.76 + "${MAKE}" -f nbproject/Makefile-${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .test-conf
6.77 +
6.78 +# dependency checking support
6.79 +.depcheck-impl:
6.80 + @echo "# This code depends on make tool being used" >.dep.inc
6.81 + @if [ -n "${MAKE_VERSION}" ]; then \
6.82 + echo "DEPFILES=\$$(wildcard \$$(addsuffix .d, \$${OBJECTFILES} \$${TESTOBJECTFILES}))" >>.dep.inc; \
6.83 + echo "ifneq (\$${DEPFILES},)" >>.dep.inc; \
6.84 + echo "include \$${DEPFILES}" >>.dep.inc; \
6.85 + echo "endif" >>.dep.inc; \
6.86 + else \
6.87 + echo ".KEEP_STATE:" >>.dep.inc; \
6.88 + echo ".KEEP_STATE_FILE:.make.state.\$${CONF}" >>.dep.inc; \
6.89 + fi
6.90 +
6.91 +# configuration validation
6.92 +.validate-impl:
6.93 + @if [ ! -f nbproject/Makefile-${CONF}.mk ]; \
6.94 + then \
6.95 + echo ""; \
6.96 + echo "Error: can not find the makefile for configuration '${CONF}' in project ${PROJECTNAME}"; \
6.97 + echo "See 'make help' for details."; \
6.98 + echo "Current directory: " `pwd`; \
6.99 + echo ""; \
6.100 + fi
6.101 + @if [ ! -f nbproject/Makefile-${CONF}.mk ]; \
6.102 + then \
6.103 + exit 1; \
6.104 + fi
6.105 +
6.106 +
6.107 +# help
6.108 +.help-impl: .help-pre
6.109 + @echo "This makefile supports the following configurations:"
6.110 + @echo " ${ALLCONFS}"
6.111 + @echo ""
6.112 + @echo "and the following targets:"
6.113 + @echo " build (default target)"
6.114 + @echo " clean"
6.115 + @echo " clobber"
6.116 + @echo " all"
6.117 + @echo " help"
6.118 + @echo ""
6.119 + @echo "Makefile Usage:"
6.120 + @echo " make [CONF=<CONFIGURATION>] [SUB=no] build"
6.121 + @echo " make [CONF=<CONFIGURATION>] [SUB=no] clean"
6.122 + @echo " make [SUB=no] clobber"
6.123 + @echo " make [SUB=no] all"
6.124 + @echo " make help"
6.125 + @echo ""
6.126 + @echo "Target 'build' will build a specific configuration and, unless 'SUB=no',"
6.127 + @echo " also build subprojects."
6.128 + @echo "Target 'clean' will clean a specific configuration and, unless 'SUB=no',"
6.129 + @echo " also clean subprojects."
6.130 + @echo "Target 'clobber' will remove all built files from all configurations and,"
6.131 + @echo " unless 'SUB=no', also from subprojects."
6.132 + @echo "Target 'all' will will build all configurations and, unless 'SUB=no',"
6.133 + @echo " also build subprojects."
6.134 + @echo "Target 'help' prints this message."
6.135 + @echo ""
6.136 +
7.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
7.2 +++ b/c++/sql-dk/nbproject/Makefile-variables.mk Fri Jan 05 23:53:23 2018 +0100
7.3 @@ -0,0 +1,35 @@
7.4 +#
7.5 +# Generated - do not edit!
7.6 +#
7.7 +# NOCDDL
7.8 +#
7.9 +CND_BASEDIR=`pwd`
7.10 +CND_BUILDDIR=build
7.11 +CND_DISTDIR=dist
7.12 +# Debug configuration
7.13 +CND_PLATFORM_Debug=GNU-Linux
7.14 +CND_ARTIFACT_DIR_Debug=dist/Debug/GNU-Linux
7.15 +CND_ARTIFACT_NAME_Debug=sql-dk
7.16 +CND_ARTIFACT_PATH_Debug=dist/Debug/GNU-Linux/sql-dk
7.17 +CND_PACKAGE_DIR_Debug=dist/Debug/GNU-Linux/package
7.18 +CND_PACKAGE_NAME_Debug=sql-dk.tar
7.19 +CND_PACKAGE_PATH_Debug=dist/Debug/GNU-Linux/package/sql-dk.tar
7.20 +# Release configuration
7.21 +CND_PLATFORM_Release=GNU-Linux
7.22 +CND_ARTIFACT_DIR_Release=dist/Release/GNU-Linux
7.23 +CND_ARTIFACT_NAME_Release=sql-dk
7.24 +CND_ARTIFACT_PATH_Release=dist/Release/GNU-Linux/sql-dk
7.25 +CND_PACKAGE_DIR_Release=dist/Release/GNU-Linux/package
7.26 +CND_PACKAGE_NAME_Release=sql-dk.tar
7.27 +CND_PACKAGE_PATH_Release=dist/Release/GNU-Linux/package/sql-dk.tar
7.28 +#
7.29 +# include compiler specific variables
7.30 +#
7.31 +# dmake command
7.32 +ROOT:sh = test -f nbproject/private/Makefile-variables.mk || \
7.33 + (mkdir -p nbproject/private && touch nbproject/private/Makefile-variables.mk)
7.34 +#
7.35 +# gmake command
7.36 +.PHONY: $(shell test -f nbproject/private/Makefile-variables.mk || (mkdir -p nbproject/private && touch nbproject/private/Makefile-variables.mk))
7.37 +#
7.38 +include nbproject/private/Makefile-variables.mk
8.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
8.2 +++ b/c++/sql-dk/nbproject/Package-Debug.bash Fri Jan 05 23:53:23 2018 +0100
8.3 @@ -0,0 +1,76 @@
8.4 +#!/bin/bash -x
8.5 +
8.6 +#
8.7 +# Generated - do not edit!
8.8 +#
8.9 +
8.10 +# Macros
8.11 +TOP=`pwd`
8.12 +CND_PLATFORM=GNU-Linux
8.13 +CND_CONF=Debug
8.14 +CND_DISTDIR=dist
8.15 +CND_BUILDDIR=build
8.16 +CND_DLIB_EXT=so
8.17 +NBTMPDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tmp-packaging
8.18 +TMPDIRNAME=tmp-packaging
8.19 +OUTPUT_PATH=${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/sql-dk
8.20 +OUTPUT_BASENAME=sql-dk
8.21 +PACKAGE_TOP_DIR=sql-dk/
8.22 +
8.23 +# Functions
8.24 +function checkReturnCode
8.25 +{
8.26 + rc=$?
8.27 + if [ $rc != 0 ]
8.28 + then
8.29 + exit $rc
8.30 + fi
8.31 +}
8.32 +function makeDirectory
8.33 +# $1 directory path
8.34 +# $2 permission (optional)
8.35 +{
8.36 + mkdir -p "$1"
8.37 + checkReturnCode
8.38 + if [ "$2" != "" ]
8.39 + then
8.40 + chmod $2 "$1"
8.41 + checkReturnCode
8.42 + fi
8.43 +}
8.44 +function copyFileToTmpDir
8.45 +# $1 from-file path
8.46 +# $2 to-file path
8.47 +# $3 permission
8.48 +{
8.49 + cp "$1" "$2"
8.50 + checkReturnCode
8.51 + if [ "$3" != "" ]
8.52 + then
8.53 + chmod $3 "$2"
8.54 + checkReturnCode
8.55 + fi
8.56 +}
8.57 +
8.58 +# Setup
8.59 +cd "${TOP}"
8.60 +mkdir -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package
8.61 +rm -rf ${NBTMPDIR}
8.62 +mkdir -p ${NBTMPDIR}
8.63 +
8.64 +# Copy files and create directories and links
8.65 +cd "${TOP}"
8.66 +makeDirectory "${NBTMPDIR}/sql-dk/bin"
8.67 +copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}bin/${OUTPUT_BASENAME}" 0755
8.68 +
8.69 +
8.70 +# Generate tar file
8.71 +cd "${TOP}"
8.72 +rm -f ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/sql-dk.tar
8.73 +cd ${NBTMPDIR}
8.74 +tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/sql-dk.tar *
8.75 +checkReturnCode
8.76 +
8.77 +# Cleanup
8.78 +cd "${TOP}"
8.79 +rm -rf ${NBTMPDIR}
9.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
9.2 +++ b/c++/sql-dk/nbproject/Package-Release.bash Fri Jan 05 23:53:23 2018 +0100
9.3 @@ -0,0 +1,76 @@
9.4 +#!/bin/bash -x
9.5 +
9.6 +#
9.7 +# Generated - do not edit!
9.8 +#
9.9 +
9.10 +# Macros
9.11 +TOP=`pwd`
9.12 +CND_PLATFORM=GNU-Linux
9.13 +CND_CONF=Release
9.14 +CND_DISTDIR=dist
9.15 +CND_BUILDDIR=build
9.16 +CND_DLIB_EXT=so
9.17 +NBTMPDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tmp-packaging
9.18 +TMPDIRNAME=tmp-packaging
9.19 +OUTPUT_PATH=${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/sql-dk
9.20 +OUTPUT_BASENAME=sql-dk
9.21 +PACKAGE_TOP_DIR=sql-dk/
9.22 +
9.23 +# Functions
9.24 +function checkReturnCode
9.25 +{
9.26 + rc=$?
9.27 + if [ $rc != 0 ]
9.28 + then
9.29 + exit $rc
9.30 + fi
9.31 +}
9.32 +function makeDirectory
9.33 +# $1 directory path
9.34 +# $2 permission (optional)
9.35 +{
9.36 + mkdir -p "$1"
9.37 + checkReturnCode
9.38 + if [ "$2" != "" ]
9.39 + then
9.40 + chmod $2 "$1"
9.41 + checkReturnCode
9.42 + fi
9.43 +}
9.44 +function copyFileToTmpDir
9.45 +# $1 from-file path
9.46 +# $2 to-file path
9.47 +# $3 permission
9.48 +{
9.49 + cp "$1" "$2"
9.50 + checkReturnCode
9.51 + if [ "$3" != "" ]
9.52 + then
9.53 + chmod $3 "$2"
9.54 + checkReturnCode
9.55 + fi
9.56 +}
9.57 +
9.58 +# Setup
9.59 +cd "${TOP}"
9.60 +mkdir -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package
9.61 +rm -rf ${NBTMPDIR}
9.62 +mkdir -p ${NBTMPDIR}
9.63 +
9.64 +# Copy files and create directories and links
9.65 +cd "${TOP}"
9.66 +makeDirectory "${NBTMPDIR}/sql-dk/bin"
9.67 +copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}bin/${OUTPUT_BASENAME}" 0755
9.68 +
9.69 +
9.70 +# Generate tar file
9.71 +cd "${TOP}"
9.72 +rm -f ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/sql-dk.tar
9.73 +cd ${NBTMPDIR}
9.74 +tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/sql-dk.tar *
9.75 +checkReturnCode
9.76 +
9.77 +# Cleanup
9.78 +cd "${TOP}"
9.79 +rm -rf ${NBTMPDIR}
10.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
10.2 +++ b/c++/sql-dk/nbproject/configurations.xml Fri Jan 05 23:53:23 2018 +0100
10.3 @@ -0,0 +1,70 @@
10.4 +<?xml version="1.0" encoding="UTF-8"?>
10.5 +<configurationDescriptor version="100">
10.6 + <logicalFolder name="root" displayName="root" projectFiles="true" kind="ROOT">
10.7 + <logicalFolder name="HeaderFiles"
10.8 + displayName="Header Files"
10.9 + projectFiles="true">
10.10 + </logicalFolder>
10.11 + <logicalFolder name="ResourceFiles"
10.12 + displayName="Resource Files"
10.13 + projectFiles="true">
10.14 + </logicalFolder>
10.15 + <logicalFolder name="SourceFiles"
10.16 + displayName="Source Files"
10.17 + projectFiles="true">
10.18 + <itemPath>CLIStarter.cpp</itemPath>
10.19 + </logicalFolder>
10.20 + <logicalFolder name="TestFiles"
10.21 + displayName="Test Files"
10.22 + projectFiles="false"
10.23 + kind="TEST_LOGICAL_FOLDER">
10.24 + </logicalFolder>
10.25 + <logicalFolder name="ExternalFiles"
10.26 + displayName="Important Files"
10.27 + projectFiles="false"
10.28 + kind="IMPORTANT_FILES_FOLDER">
10.29 + <itemPath>Makefile</itemPath>
10.30 + </logicalFolder>
10.31 + </logicalFolder>
10.32 + <projectmakefile>Makefile</projectmakefile>
10.33 + <confs>
10.34 + <conf name="Debug" type="1">
10.35 + <toolsSet>
10.36 + <compilerSet>default</compilerSet>
10.37 + <dependencyChecking>true</dependencyChecking>
10.38 + <rebuildPropChanged>false</rebuildPropChanged>
10.39 + </toolsSet>
10.40 + <compileType>
10.41 + <ccTool>
10.42 + <standard>11</standard>
10.43 + </ccTool>
10.44 + </compileType>
10.45 + <item path="CLIStarter.cpp" ex="false" tool="1" flavor2="0">
10.46 + </item>
10.47 + </conf>
10.48 + <conf name="Release" type="1">
10.49 + <toolsSet>
10.50 + <compilerSet>default</compilerSet>
10.51 + <dependencyChecking>true</dependencyChecking>
10.52 + <rebuildPropChanged>false</rebuildPropChanged>
10.53 + </toolsSet>
10.54 + <compileType>
10.55 + <cTool>
10.56 + <developmentMode>5</developmentMode>
10.57 + </cTool>
10.58 + <ccTool>
10.59 + <developmentMode>5</developmentMode>
10.60 + <standard>11</standard>
10.61 + </ccTool>
10.62 + <fortranCompilerTool>
10.63 + <developmentMode>5</developmentMode>
10.64 + </fortranCompilerTool>
10.65 + <asmTool>
10.66 + <developmentMode>5</developmentMode>
10.67 + </asmTool>
10.68 + </compileType>
10.69 + <item path="CLIStarter.cpp" ex="false" tool="1" flavor2="0">
10.70 + </item>
10.71 + </conf>
10.72 + </confs>
10.73 +</configurationDescriptor>
11.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
11.2 +++ b/c++/sql-dk/nbproject/licenseheader.txt Fri Jan 05 23:53:23 2018 +0100
11.3 @@ -0,0 +1,17 @@
11.4 +/**
11.5 + * SQL-DK
11.6 + * Copyright © 2013 František Kučera (frantovo.cz)
11.7 + *
11.8 + * This program is free software: you can redistribute it and/or modify
11.9 + * it under the terms of the GNU General Public License as published by
11.10 + * the Free Software Foundation, either version 3 of the License, or
11.11 + * (at your option) any later version.
11.12 + *
11.13 + * This program is distributed in the hope that it will be useful,
11.14 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
11.15 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11.16 + * GNU General Public License for more details.
11.17 + *
11.18 + * You should have received a copy of the GNU General Public License
11.19 + * along with this program. If not, see <http://www.gnu.org/licenses/>.
11.20 + */
12.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
12.2 +++ b/c++/sql-dk/nbproject/project.properties Fri Jan 05 23:53:23 2018 +0100
12.3 @@ -0,0 +1,2 @@
12.4 +#Fri Jan 05 23:50:28 CET 2018
12.5 +project.licensePath=./nbproject/licenseheader.txt
13.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
13.2 +++ b/c++/sql-dk/nbproject/project.xml Fri Jan 05 23:53:23 2018 +0100
13.3 @@ -0,0 +1,28 @@
13.4 +<?xml version="1.0" encoding="UTF-8"?>
13.5 +<project xmlns="http://www.netbeans.org/ns/project/1">
13.6 + <type>org.netbeans.modules.cnd.makeproject</type>
13.7 + <configuration>
13.8 + <data xmlns="http://www.netbeans.org/ns/make-project/1">
13.9 + <name>sql-dk</name>
13.10 + <c-extensions/>
13.11 + <cpp-extensions>cpp</cpp-extensions>
13.12 + <header-extensions/>
13.13 + <sourceEncoding>UTF-8</sourceEncoding>
13.14 + <make-dep-projects/>
13.15 + <sourceRootList/>
13.16 + <confList>
13.17 + <confElem>
13.18 + <name>Debug</name>
13.19 + <type>1</type>
13.20 + </confElem>
13.21 + <confElem>
13.22 + <name>Release</name>
13.23 + <type>1</type>
13.24 + </confElem>
13.25 + </confList>
13.26 + <formatting>
13.27 + <project-formatting-style>false</project-formatting-style>
13.28 + </formatting>
13.29 + </data>
13.30 + </configuration>
13.31 +</project>