examples/pl-functions/CMakeLists.txt
author "Arnur Nigmetov <a.nigmetov@gmail.com>"
Mon, 02 Mar 2015 13:20:51 +0100
branchdev
changeset 281 6e883f004ebe
parent 237 92b59e2e6fb3
permissions -rw-r--r--
Added executable to compute Wasserstein distance. Powering to 1/q is done in output. Maybe, should be changed in the function itself?

set							(targets						
							 test-grid2D 
							 test-grid2D-vineyard
							 combustion-vineyard
                             pl-vineyard)

if                          (use_dsrpdb)
    set                     (t                          pdbdistance-vineyard)
    add_executable			(${t} ${t}.cpp)
    target_link_libraries	(${t} ${libraries} ${dsrpdb_LIBRARY} ${Boost_PROGRAM_OPTIONS_LIBRARY})
endif                       (use_dsrpdb)

foreach 					(t ${targets})
    add_executable			(${t} ${t}.cpp)
    target_link_libraries	(${t} ${libraries} ${Boost_PROGRAM_OPTIONS_LIBRARY})
endforeach 					(t ${targets})