Skip to content

Commit

Permalink
Merge pull request #111 from slayoo/icicle
Browse files Browse the repository at this point in the history
Icicle
  • Loading branch information
slayoo committed May 29, 2015
2 parents 5478b73 + a852ce7 commit 37967bc
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 2 deletions.
31 changes: 31 additions & 0 deletions CREDITS
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
Development of libcloudph++ has been carried out at the
Faculty of Physics [1], University of Warsaw [2], Poland.
The University of Warsaw holds the copyright to libcloudph++.

The development was funded mainly by the Poland's National
Science Centre (NCN, [3]).

The development team consists of (in alphabetic order):

Sylwester Arabas
(library design, core code in lagrangian scheme,
GPU/CPU option, Python bindings, documentation [4])
Piotr Dziekan
(validation and extensions of the coalescence scheme)
Dorota Jarecka
(Python bindings)
Anna Jaruga
(bulk schemes, aqueous chemistry in lagrangian scheme,
documentation [4])
Hanna Pawłowska
(team management, documentation [4])
Wojciech Grabowski
(consultancy, documentation [4])
Maciej Waruszewski
(misc help)

[1]: http://www.fuw.edu.pl/
[2]: http://en.uw.edu.pl/
[3]: http://www.ncn.gov.pl/
[4]: http://arxiv.org/abs/1407.1309
http://www.geosci-model-dev-discuss.net/7/8275/2014/
1 change: 1 addition & 0 deletions include/libcloudph++/git_revision.h
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#define GIT_REVISION "0f0d46d4954f9cb0b83b3983f89036baa2da61e9"
7 changes: 5 additions & 2 deletions tests/paper_GMD_2015/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ target_include_directories(icicle PUBLIC ${libmpdataxx_INCLUDE_DIRS})
find_package(Boost COMPONENTS thread iostreams system timer program_options filesystem REQUIRED)
target_link_libraries(icicle ${Boost_LIBRARIES})

#TODO: check if it's there
target_link_libraries(icicle cloudphxx_lgrngn)
find_library(libcloudphxx_LIBRARIES cloudphxx_lgrngn ${CMAKE_SOURCE_DIR}/../../build/src)
if (NOT libmpdataxx_LIBRARIES)
message(FATAL_ERROR "libclouphxx++ not found")
endif()
target_link_libraries(icicle ${libcloudphxx_LIBRARIES})

install(TARGETS icicle DESTINATION bin)

0 comments on commit 37967bc

Please sign in to comment.