Changeset 6584

Show
Ignore:
Timestamp:
05/02/07 18:08:36
Author:
robert
Message:

Moved the win32_src, pthread_src and sproc_src directories into the src/OpenThreads/ sub directories

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • OpenThreads/trunk/CMakeLists.txt

    r6546 r6584  
    9494    # So I think Cygwin wants to use pthreads 
    9595    IF(CYGWIN) 
    96         SUBDIRS(pthread_src examples_src) 
     96        SUBDIRS(src/OpenThreads/pthreads examples_src) 
    9797    ELSE(CYGWIN) 
    9898        # Everybody else including Msys should probably go here 
    99         SUBDIRS(win32_src)  
     99        SUBDIRS(src/OpenThreads/win32)  
    100100        # examples_src) 
    101101    ENDIF(CYGWIN) 
     
    103103    IF(UNIX) 
    104104        IF(OPENTHREADS_USE_SPROC_INSTEAD_OF_PTHREADS) 
    105             SUBDIRS(sproc_src examples_src) 
     105            SUBDIRS(src/OpenThreads/sproc examples_src) 
    106106        ELSE(OPENTHREADS_USE_SPROC_INSTEAD_OF_PTHREADS) 
    107             SUBDIRS(pthread_src examples_src) 
     107            SUBDIRS(src/OpenThreads/pthreads examples_src) 
    108108        ENDIF(OPENTHREADS_USE_SPROC_INSTEAD_OF_PTHREADS) 
    109109    ELSE(UNIX)