# Authors: Frank Stappers and Jan Friso Groote
# Copyright: see the accompanying file COPYING or copy at
# https://svn.win.tue.nl/trac/MCRL2/browser/trunk/COPYING
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)

cmake_minimum_required(VERSION 2.6)


# ####################################
# ########## Project lpssim ##########
# ####################################

project(lpssim)

add_executable(${PROJECT_NAME}
  lpssim.cpp
)

target_link_libraries(${PROJECT_NAME}
  mcrl2_lps
)

# add install target:
install(TARGETS ${PROJECT_NAME} DESTINATION ${MCRL2_BIN_DIR} COMPONENT Applications)

# Generate man pages
include(${CMAKE_SOURCE_DIR}/scripts/GenerateManPages.cmake)
