Continuing merge of CMake build system files into trunk with the encouragement of Doug Gregor

[SVN r49510]
This commit is contained in:
Michael A. Jackson
2008-11-01 13:15:41 +00:00
parent dc0eb8fe0e
commit 96f9913aa8
2 changed files with 26 additions and 0 deletions

21
CMakeLists.txt Normal file
View File

@@ -0,0 +1,21 @@
#----------------------------------------------------------------------------
# This file was automatically generated from the original CMakeLists.txt file
# Add a variable to hold the headers for the library
set (lib_headers
interprocess
)
# Add a library target to the build system
boost_library_project(
interprocess
# SRCDIRS
TESTDIRS test
HEADERS ${lib_headers}
# DOCDIRS
DESCRIPTION "Shared memory, memory mapped files, process-shared mutexes, condition variables, containers and allocators."
MODULARIZED
AUTHORS "Ion Gaztanaga <igaztanaga -at- gmail.com>"
# MAINTAINERS
)

5
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,5 @@
file(GLOB INTERPROCESS_TESTS *.cpp)
foreach(TEST ${INTERPROCESS_TESTS})
get_filename_component(TEST ${TEST} NAME_WE)
boost_test_run(${TEST} DEPENDS boost_thread MULTI_THREADED)
endforeach()