summaryrefslogblamecommitdiffstats
path: root/src/OSSupport/CMakeLists.txt
blob: 29cf440ca0b65e1879ef979f6591a7fc23be60d2 (plain) (tree)
1
2
3
4
5
6





                                                 








                           

                         
 










                         

                       
 
 

                                              
 
                
                                                           
               
       

cmake_minimum_required (VERSION 2.6)
project (MCServer)

include_directories ("${PROJECT_SOURCE_DIR}/../")

SET (SRCS
	CriticalSection.cpp
	Errors.cpp
	Event.cpp
	File.cpp
	GZipFile.cpp
	IsThread.cpp
	ListenThread.cpp
	Semaphore.cpp
	Socket.cpp
	SocketThreads.cpp
)

SET (HDRS
	CriticalSection.h
	Errors.h
	Event.h
	File.h
	GZipFile.h
	IsThread.h
	ListenThread.h
	Queue.h
	Semaphore.h
	Socket.h
	SocketThreads.h
)

if(NOT MSVC)
	add_library(OSSupport ${SRCS} ${HDRS})

	if(UNIX)
		target_link_libraries(OSSupport pthread rt)
	endif()
endif()