ait/os/bin/shadowfuse/CMakeLists.txt
author om
Tue, 12 Nov 2013 11:31:34 +0100
branchom
changeset 2 c9bf2537109a
permissions -rw-r--r--
added C/C++ and Python sources
om@2
     1
# ------------------------------------------------------------
om@2
     2
# CMakeLists.txt 
om@2
     3
# 
om@2
     4
# make: bin/ make the shadowfuse binary
om@2
     5
#
om@2
     6
# Autor: Oliver Maurhart, <oliver.maurhart@ait.ac.at>
om@2
     7
#
om@2
     8
# Copyright (C) 2013 AIT Austrian Institute of Technology
om@2
     9
# AIT Austrian Institute of Technology GmbH
om@2
    10
# Donau-City-Strasse 1 | 1220 Vienna | Austria
om@2
    11
# http://www.ait.ac.at
om@2
    12
#
om@2
    13
# This program is free software; you can redistribute it and/or
om@2
    14
# modify it under the terms of the GNU General Public License
om@2
    15
# as published by the Free Software Foundation version 2.
om@2
    16
# 
om@2
    17
# This program is distributed in the hope that it will be useful,
om@2
    18
# but WITHOUT ANY WARRANTY; without even the implied warranty of
om@2
    19
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
om@2
    20
# GNU General Public License for more details.
om@2
    21
# 
om@2
    22
# You should have received a copy of the GNU General Public License
om@2
    23
# along with this program; if not, write to the Free Software
om@2
    24
# Foundation, Inc., 51 Franklin Street, Fifth Floor, 
om@2
    25
# Boston, MA  02110-1301, USA.
om@2
    26
# ------------------------------------------------------------
om@2
    27
om@2
    28
om@2
    29
# ------------------------------------------------------------
om@2
    30
# shadowfuse
om@2
    31
om@2
    32
# sources
om@2
    33
set(SHADOWFUSE_SRC
om@2
    34
    main.cpp
om@2
    35
)
om@2
    36
om@2
    37
# bin definition
om@2
    38
add_executable(shadowfuse ${SHADOWFUSE_SRC})
om@2
    39
om@2
    40
# linkage
om@2
    41
target_link_libraries(shadowfuse ${CMAKE_REQUIRED_LIBRARIES})
om@2
    42
om@2
    43
# install
om@2
    44
install(TARGETS shadowfuse RUNTIME DESTINATION bin)