gnzlbg / nmp

Non-blocking message passing (a C++14 MPI wrapper)
Boost Software License 1.0
18 stars 3 forks source link

CMake Error: File /Users/jrhammon/Work/MPI/C++/nmp/site/doxygen/Doxyfile.in does not exist. #1

Closed jeffhammond closed 9 years ago

jeffhammond commented 9 years ago

Can you help me with the CMake options that build NMP?

Thanks,

Jeff

PS Building with mkdir build ; cd build && cmake .. fails as well.

jrhammon-mac01:nmp jrhammon$ cmake .
-- The CXX compiler identification is AppleClang 6.0.0.6000051
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Found MPI_CXX: /opt/mpich/dev/gcc/default/lib/libmpicxx.dylib;/opt/mpich/dev/gcc/default/lib/libmpi.dylib;/opt/mpich/dev/gcc/default/lib/libpmpi.dylib  
-- Found Doxygen: /usr/local/bin/doxygen (found version "1.8.8") 
CMake Error: File /Users/jrhammon/Work/MPI/C++/nmp/site/doxygen/Doxyfile.in does not exist.
CMake Error at site/CMakeLists.txt:18 (configure_file):
  configure_file Problem configuring file

-- Configuring incomplete, errors occurred!
See also "/Users/jrhammon/Work/MPI/C++/nmp/CMakeFiles/CMakeOutput.log".
gnzlbg commented 9 years ago

Sorry about this,

I commited most of the files this morning and hadn't testet yet checking out the repo and building it. The files doxygen/Doxygen.in and doxygen/layout.xml were missing but it is fixed on master now.

mkdir build && cd build && cmake ../ && make tests

should configure it and run all the tests.

There is also a small script in aux -> aux/configure.py

You can do on the source directory ./aux/configure.py -h to view all the options. By default it makes a directory called build and configures the code there.

On Fri, Sep 19, 2014 at 8:14 PM, Jeff Hammond notifications@github.com wrote:

Can you help me with the CMake options that build NMP?

Thanks,

Jeff

PS Building with mkdir build ; cd build && cmake .. fails as well.

jrhammon-mac01:nmp jrhammon$ cmake . -- The CXX compiler identification is AppleClang 6.0.0.6000051 -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Found MPI_CXX: /opt/mpich/dev/gcc/default/lib/libmpicxx.dylib;/opt/mpich/dev/gcc/default/lib/libmpi.dylib;/opt/mpich/dev/gcc/default/lib/libpmpi.dylib -- Found Doxygen: /usr/local/bin/doxygen (found version "1.8.8") CMake Error: File /Users/jrhammon/Work/MPI/C++/nmp/site/doxygen/Doxyfile.in does not exist. CMake Error at site/CMakeLists.txt:18 (configure_file): configure_file Problem configuring file

-- Configuring incomplete, errors occurred! See also "/Users/jrhammon/Work/MPI/C++/nmp/CMakeFiles/CMakeOutput.log".

— Reply to this email directly or view it on GitHub https://github.com/gnzlbg/nmp/issues/1.

Dipl.-Ing. Gonzalo Brito Gadeschi Institute of Aerodynamics and Chair of Fluid Mechanics RWTH Aachen University Wuellnerstraße 5a D-52062 Aachen Germany Phone: ++49-(0)241-80-94821 Fax: ++49-(0)241-80-92257 E-mail: g.brito@aia.rwth-aachen.de Internet: www.aia.rwth-aachen.de

jeffhammond commented 9 years ago

Thanks!