summaryrefslogtreecommitdiff
path: root/cmake
Commit message (Collapse)AuthorAgeFilesLines
* CMake: check for PKG_CONFIG_FOUND in FindPOPT.cmakeAlan Antonuk2014-09-021-2/+4
|
* Add platform, version, copyright client propertiesAlan Antonuk2014-08-251-0/+2
| | | | | | | | | Add 'platform' 'version', 'copyright' client-properties to start-ok method during connection handshake. Adapted from: https://github.com/synety-jdebp/rabbitmq-c/commit/e3c76e1887ff50378f6146167daa024dbd7d4eeb by: Jonathan de Boyne Pollard <jonathan.de.boyne.pollard@synety.com>
* Add GNUInstallDirs.cmake moduleAlan Antonuk2013-11-051-0/+205
| | | | | Adding GNUInstallDirs.cmake module for older versions of CMake that do not have that module
* Add compile and runtime library version functionsAlan Antonuk2013-07-231-2/+0
|
* Update FindPolarSSL and FindcyaSSL cmake scriptsAlan Antonuk2013-04-172-14/+26
| | | | | LibFindMacros.cmake was removed from the project. Update FindPolarSSL and FindcyaSSL scripts to work without LibFindMacros.cmake
* Remove duplicate CMake scriptsMichael Steinert2013-04-092-163/+0
| | | | Signed-off-by: Michael Steinert <mike.steinert@gmail.com>
* Cleanup CMake build a bitMichael Steinert2013-04-092-0/+163
| | | | | | | | | | | 1. Add checks for Unix/Linux-specific header files (similar to configure.ac) 2. Added a check for the `-std=c99` flag. It appears that some of this code uses C99 and compiling without this flag produces quite a few warnings. Signed-off-by: Michael Steinert <mike.steinert@gmail.com>
* Adding support for SSL to CMake build systemAlan Antonuk2013-04-092-0/+34
|
* Adding vim modelines to help with source formattingAlan Antonuk2013-04-055-0/+5
|
* FIX: htonll redeclared on Win32 v8Alan Antonuk2013-01-231-0/+2
| | | | | | config.h.in didn't include the HAVE_HTONLL, have added this htonll is declared inline in the Winsock2.h header, must use CheckSymbolExists from there.
* Fix for XmlTo not found warning in tools directoryAlan Antonuk2013-01-191-1/+1
| | | | | | | Issue was FindPackageHandleStandardArgs upper-cases the package name so when XmlTo was passed to the FIND_PACKAGE_HANDLE_STANDARD_ARGS function it created the variable XMLTO_FOUND instead of the expected XmlTo_FOUND
* add CMakePushCheckState.cmake for older cmake versionsBernhard K. Weisshuhn2013-01-151-0/+103
| | | | | | http://cmake.org/gitweb?p=cmake.git;a=blob;f=Modules/CMakePushCheckState.cmake with licence copied from: http://cmake.org/gitweb?p=cmake.git;a=blob;f=Copyright.txt
* Install .pdb files where availableAlan Antonuk2012-11-292-0/+67
|
* Refactor TestCInline.cmake scriptAlan Antonuk2012-11-142-5/+5
| | | | | | Refactor TestCInline cmake script to save the inline keyword in the cmake cache so it won't get lost on a cmake reconfigure. Print status message of which inlining keyword was selected
* Removing unused LibFindMacros cmake scriptAlan Antonuk2012-11-141-99/+0
|
* Refactor FindXmlTo.cmake scriptAlan Antonuk2012-11-141-10/+5
| | | | | | Refactor FindXmlTo to use FindPackageHandleStandardArgs to have less to maintain. Also mark the XMLTO_EXECUTABLE variable as advanced so it doesn't appear in the GUI by default
* Refactor FindPOPT.cmake scriptAlan Antonuk2012-11-141-6/+25
| | | | | | | Refactor FindPOPT to: - Use pkg-config when available. (popt installs with a pkg-config file) - Use FindPackageHandleStandardArgs which is a default part of CMake and thus we don't need to maintain LibFindMacros
* cmake: configure config.h instead of generating itAlan Antonuk2012-10-201-0/+10
|
* Adding CMake procedure to build/install tools manpagesAlan Antonuk2012-05-241-0/+103
|
* Move TestCInline.cmake into cmake directoryMichael Steinert2012-05-171-0/+28
| | | | Signed-off-by: Michael Steinert <mike.steinert@gmail.com>
* Adding POPT CMake lib finder.Alan Antonuk2011-11-012-0/+117
Utilities in the tools/ directory will now be built if the popt library is found