diff options
author | Daniel Lee <daniel.lee@dwd.de> | 2016-11-08 11:14:08 +0100 |
---|---|---|
committer | Mathis Rosenhauer <rosenhauer@dkrz.de> | 2016-11-16 13:14:49 +0100 |
commit | 73b91798bf658d5f466cc530d85455c71b7ac01c (patch) | |
tree | 03b3b24d1f98127022145eeb115e40718545d3c4 | |
parent | 128303297b6a7c2d7773aaeb88e42ff48ac22927 (diff) | |
download | libaec-73b91798bf658d5f466cc530d85455c71b7ac01c.tar.gz libaec-73b91798bf658d5f466cc530d85455c71b7ac01c.tar.bz2 libaec-73b91798bf658d5f466cc530d85455c71b7ac01c.zip |
Describe install with CMake rather than configure
-rw-r--r-- | INSTALL | 28 |
1 files changed, 15 insertions, 13 deletions
@@ -2,14 +2,25 @@ Installation ============ -The most common installation procedure on Unix-like systems looks as -follows. +The installation procedure uses CMake, as follows: Unpack the tar archive and change into the unpacked directory. - ./configure - make check install + mkdir build + cd build + cmake .. # CMAKE_INSTALL_PREFIX=~/.local + make install +You can set options for compiling using the CMake GUI by replacing the cmake +command with + + cmake-gui .. + +or by setting the options manually, e.g. + + cmake -DCMAKE_INSTALL_PREFIX=~/local .. + +in order to set the install prefix to ~/local ======================= Intel compiler settings @@ -26,12 +37,3 @@ On a 3.4 GHz E3-1240 v3 we see more than 400 MiB/s for encoding typical data. Using other SIMD instruction sets on older CPUs may also help. - -======= -Windows -======= - -As an alternative way to build libaec you can use CMake. CMake can -also generate project files for Microsoft Visual Studio. This allows -you to build AEC.DLL and SZIP.DLL which can be used with the Windows -version of HDF5. |