~ubuntu-branches/ubuntu/utopic/adios/utopic

« back to all changes in this revision

Viewing changes to utils/skel/src/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Alastair McKinstry
  • Date: 2013-12-09 15:21:31 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20131209152131-jtd4fpmdv3xnunnm
Tags: 1.5.0-1
* New upstream.
* Standards-Version: 3.9.5
* Include latest config.{sub,guess} 
* New watch file.
* Create libadios-bin for binaries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include_directories(${PROJECT_SOURCE_DIR}/utils/skel/src)
 
2
include_directories(${PROJECT_BINARY_DIR})
 
3
link_directories(${PROJECT_BINARY_DIR}/utils/skel/src)
 
4
 
 
5
if(BUILD_FORTRAN)
 
6
  add_library(skel STATIC skel_xml_output.c skel_xml_output_f.c)
 
7
else()
 
8
  add_library(skel STATIC skel_xml_output.c)
 
9
endif(BUILD_FORTRAN)
 
10
 
 
11
install(FILES skel_xml_output.h DESTINATION ${includedir}/skel)
 
12
install(FILES ${PROJECT_BINARY_DIR}/utils/skel/src/libskel.a DESTINATION ${libdir})