~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/rtop/test/ops_lib/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme, Johannes Ring
  • Date: 2009-12-13 12:53:22 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091213125322-in0nrdjc55deqsw9
Tags: 10.0.3.dfsg-1
[Christophe Prud'homme]
* New upstream release

[Johannes Ring]
* debian/patches/libname.patch: Add prefix 'libtrilinos_' to all
  libraries. 
* debian/patches/soname.patch: Add soversion to libraries.
* debian/watch: Update download URL.
* debian/control:
  - Remove python-numeric from Build-Depends (virtual package).
  - Remove automake and autotools from Build-Depends and add cmake to
    reflect switch to CMake.
  - Add python-support to Build-Depends.
* debian/rules: 
  - Cleanup and updates for switch to CMake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INCLUDE(PackageAddExecutableAndTest)
 
2
 
 
3
 
 
4
INCLUDE_DIRECTORIES(${PACKAGE_SOURCE_DIR}/test/support)
 
5
 
 
6
 
 
7
PACKAGE_ADD_EXECUTABLE_AND_TEST(
 
8
  opsUnitTests
 
9
  SOURCES
 
10
    ROpCountNanInf_UnitTests.cpp
 
11
    ROpDotProd_UnitTests.cpp
 
12
    ROpGetSubVector_UnitTests.cpp
 
13
    ROpMaxIndexLessThanBound_UnitTests.cpp
 
14
    ROpMaxIndex_UnitTests.cpp
 
15
    ROpMax_UnitTests.cpp
 
16
    ROpMinIndexGreaterThanBound_UnitTests.cpp
 
17
    ROpMinIndex_UnitTests.cpp
 
18
    ROpMin_UnitTests.cpp
 
19
    ROpNorm1_UnitTests.cpp
 
20
    ROpNorm2_UnitTests.cpp
 
21
    ROpNormInf_UnitTests.cpp
 
22
    ROpSum_UnitTests.cpp
 
23
    ROpWeightedNorm2_UnitTests.cpp
 
24
    TOpSetSubVector_UnitTests.cpp
 
25
    TOpAbs_UnitTests.cpp
 
26
    TOpAddScalar_UnitTests.cpp
 
27
    TOpAssignScalar_UnitTests.cpp
 
28
    TOpAssignVectors_UnitTests.cpp
 
29
    TOpAXPY_UnitTests.cpp
 
30
    TOpEleWiseConjProd_UnitTests.cpp
 
31
    TOpEleWiseDivide_UnitTests.cpp
 
32
    TOpEleWiseProd_UnitTests.cpp
 
33
    TOpEleWiseProdUpdate_UnitTests.cpp
 
34
    TOpLinearCombination_UnitTests.cpp
 
35
    TOpRandomize_UnitTests.cpp
 
36
    TOpReciprocal_UnitTests.cpp
 
37
    TOpScaleVector_UnitTests.cpp
 
38
    ../support/supportUnitTestsHelpers.cpp
 
39
    ${PACKAGE_SOURCE_DIR}/../teuchos/test/UnitTest/Teuchos_StandardUnitTestMain.cpp
 
40
  ARGS "--error-tol-slack=1e+2"
 
41
  COMM serial mpi
 
42
  NUM_MPI_PROCS 1
 
43
  STANDARD_PASS_OUTPUT
 
44
  )