~ubuntu-branches/debian/stretch/adios/stretch

« back to all changes in this revision

Viewing changes to examples/C/schema/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Alastair McKinstry
  • Date: 2014-06-16 23:06:38 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20140616230638-5a0z7ylxx8i0edrg
Tags: 1.7.0-1
* New upstream release.
* Add adios.pc pkgconfig file. adios_config now uses this.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
add_executable(triangle2d triangle2d.c)
19
19
target_link_libraries(triangle2d adios ${ADIOSLIB_LDADD})
20
20
 
 
21
add_executable(uniform2d_noxml uniform2d_noxml.c)
 
22
target_link_libraries(uniform2d_noxml adios ${ADIOSLIB_LDADD})
 
23
 
 
24
add_executable(rectilinear2d_noxml rectilinear2d_noxml.c)
 
25
target_link_libraries(rectilinear2d_noxml adios ${ADIOSLIB_LDADD})
 
26
 
 
27
add_executable(structured2d_noxml structured2d_noxml.c)
 
28
target_link_libraries(structured2d_noxml adios ${ADIOSLIB_LDADD})
 
29
 
 
30
add_executable(tri2d_noxml tri2d_noxml.c)
 
31
target_link_libraries(tri2d_noxml adios ${ADIOSLIB_LDADD})
21
32
 
22
33
set (PROGS uniform2d rectilinear2d structured2d tri2d triangle2d)
23
34
foreach (PROG ${PROGS} )