Boost logo

Boost Interest :

Subject: [Boost-cmake] CMakeLists.txt references missing Boost.Thread files
From: Belcourt, Kenneth (kbelco_at_[hidden])
Date: 2009-10-10 00:16:10


Hi,

The CMakeLists.txt file in libs/thread/src references exceptions.cpp
in both pthread and win32 subdirectories, but neither of these files
exist. I've removed the reference to both of these and would
appreciate it if someone could commit this patch to Subversion (or
I'll do it myself if that's okay with you).

-- Noel

Index: src/CMakeLists.txt
===================================================================
--- src/CMakeLists.txt (revision 56696)
+++ src/CMakeLists.txt (working copy)
@@ -5,10 +5,9 @@
  # See http://www.boost.org/LICENSE_1_0.txt
  #
  if (WIN32)
- set(THREAD_SOURCES win32/thread.cpp win32/exceptions.cpp win32/
tss_dll.cpp
- win32/tss_pe.cpp)
+ set(THREAD_SOURCES win32/thread.cpp win32/tss_dll.cpp win32/
tss_pe.cpp)
  else (WIN32)
- set(THREAD_SOURCES pthread/thread.cpp pthread/exceptions.cpp
pthread/once.cpp)
+ set(THREAD_SOURCES pthread/thread.cpp pthread/once.cpp)
  endif (WIN32)

  boost_add_library(


Boost-cmake list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk