Skip to content

Commit

Permalink
Added missing CMakeLists.txt for signals
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalev Lember committed Oct 9, 2010
1 parent bc3d760 commit 0e39a87
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions libs/signals/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#/**********************************************************\
#Original Author: Richard Bateman (taxilian)
#
#Created: Nov 20, 2009
#License: Dual license model; choose one of two:
# New BSD License
# http://www.opensource.org/licenses/bsd-license.php
# - or -
# GNU Lesser General Public License, version 2.1
# http://www.gnu.org/licenses/lgpl-2.1.html
#
#Copyright 2009 PacketPass, Inc and the Firebreath development team
#\**********************************************************/

# Written to work with cmake 2.6
cmake_minimum_required (VERSION 2.6)
set (CMAKE_BACKWARDS_COMPATIBILITY 2.6)

include(${CMAKE_DIR}/common.cmake)

include_directories (
${Boost_INCLUDE_DIRS}
${CMAKE_CURRENT_SOURCE_DIR}/src
)
file (GLOB GENERAL_SRC RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
src/*.cpp
)

set(SOURCES
${GENERAL_SRC}
)

add_library (boost_signals STATIC ${SOURCES})

0 comments on commit 0e39a87

Please sign in to comment.