-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added missing CMakeLists.txt for signals
- Loading branch information
Kalev Lember
committed
Oct 9, 2010
1 parent
bc3d760
commit 0e39a87
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}) | ||
|