Tidak Ada Deskripsi

Richard Chapman ad4de1debd Merge pull request #380 from ghalliday/issue378 14 tahun lalu
cmake_modules badb08fe41 Fix gh-306 Boost 1.33 cores in regex replace 14 tahun lalu
common 534614e87d Merge pull request #375 from ghalliday/cleanup2 14 tahun lalu
dali 4ea7270f68 Fix gh-362 gh-371 gh-364 caught by static check. 14 tahun lalu
deploy 229df34d92 ISSUE #167 Fix copyright notices 14 tahun lalu
deployment 783b056ff3 Merge pull request #374 from richardkchapman/includepaths 14 tahun lalu
ecl 4ea7270f68 Fix gh-362 gh-371 gh-364 caught by static check. 14 tahun lalu
ecllibrary 6047397f02 BUG: #85660 Add a Str.ToTitleCase to match unicode 14 tahun lalu
esp 783b056ff3 Merge pull request #374 from richardkchapman/includepaths 14 tahun lalu
initfiles ac357a131f Merge pull request #309 from pschwartz/issue291 14 tahun lalu
install_directory 6047397f02 BUG: #85660 Add a Str.ToTitleCase to match unicode 14 tahun lalu
plugins 6047397f02 BUG: #85660 Add a Str.ToTitleCase to match unicode 14 tahun lalu
roxie 1ad651a325 Merge pull request #373 from richardkchapman/csvproperties 14 tahun lalu
rtl 4ea7270f68 Fix gh-362 gh-371 gh-364 caught by static check. 14 tahun lalu
services 229df34d92 ISSUE #167 Fix copyright notices 14 tahun lalu
system df20735c74 FIX gh-378 Exit cache loop early (common case) 14 tahun lalu
testing 61d8ce1a9a Merge pull request #336 from ghalliday/bug85049 14 tahun lalu
thorlcr 783b056ff3 Merge pull request #374 from richardkchapman/includepaths 14 tahun lalu
tools 783b056ff3 Merge pull request #374 from richardkchapman/includepaths 14 tahun lalu
.gitattributes 7f4953af04 Issue #254 Switches template reading to use jlib 14 tahun lalu
.gitignore 887336faac Initial commit corresponding to svn revision 66146 14 tahun lalu
CMakeLists.txt 45c7bab688 ISSUE #80: Support custom result display via workunit resources 14 tahun lalu
CNAME 996619b9ea Add CNAME entry for GitHub pages redirection 14 tahun lalu
CONTRIBUTORS 4b97f83a39 Update CONTRIBUTORS with link to agreement 14 tahun lalu
LICENSE.txt 887336faac Initial commit corresponding to svn revision 66146 14 tahun lalu
README 887336faac Initial commit corresponding to svn revision 66146 14 tahun lalu
VERSIONS baccdc9cd0 Update build version descriptions 14 tahun lalu
baseaddr.txt 887336faac Initial commit corresponding to svn revision 66146 14 tahun lalu
build-config.h.cmake 887336faac Initial commit corresponding to svn revision 66146 14 tahun lalu
sourcedoc.xml a35d4e04da Add VERSION file describing our version name policy 14 tahun lalu

README


Copyright (C) <2011>

All rights reserved. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.

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 Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program. If not, see .


http://hpccsystems.com


Description:
------------
This file is the top level handling for
cmake based compilation and build process.

To build for Linux:
1. Check out sources (for example, to directory ~/hpcc)
2. Create a build directory - either as a child of hpcc or elsewhere
3. cd to the build directory
4a.To create makefiles to build native release version for local machine, run
cmake ~/hpcc
4b.To create makefiles to build native debug version, run
cmake -DCMAKE_BUILD_TYPE=Debug ~/hpcc
4c.To create makefiles to build 32-bit version from 64-bit host, run
cmake -DCMAKE_C_FLAGS:STRING="-m32 -march=i386" -DCMAKE_CXX_FLAGS:STRING="-m32 -march=i386" ~/hpcc
5. To build the makefiles just created above, run
make
6. Executables will be created in .//bin and .//libs

To build for Windows:
1. Check out sources (for example, to directory c:\hpcc)
2. Create a build directory - either as a child of hpcc or elsewhere
3. cd to the build directory
4. To create a Visual Studio project, run
cmake c:\hpcc -G "Visual Studio 9 2008"
The sln file hpccsystems-platform.sln will be created in the current directory, and will support debug and release targets
5. To build the project, load the solution into the visual studio IDE and build in the usual way.
6. Executables will be created in (for example) c:\hpcc\bin\