summaryrefslogblamecommitdiffstats
path: root/tests/ByteBuffer/CMakeLists.txt
blob: 06832848e947386c2d86e6e153724a9d631170ef (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                        
                                                            




                                                      
                                                          



                          
                 

 
















                                                                    
enable_testing()
add_definitions(-DTEST_GLOBALS=1)

include_directories(${CMAKE_SOURCE_DIR}/src/)

add_definitions(-DTEST_GLOBALS=1)

set (SHARED_SRCS
	${CMAKE_SOURCE_DIR}/src/ByteBuffer.cpp
	${CMAKE_SOURCE_DIR}/src/OSSupport/StackTrace.cpp
	${CMAKE_SOURCE_DIR}/src/OSSupport/WinStackWalker.cpp
)

set (SHARED_HDRS
	${CMAKE_SOURCE_DIR}/src/ByteBuffer.h
	${CMAKE_SOURCE_DIR}/src/OSSupport/StackTrace.h
	${CMAKE_SOURCE_DIR}/src/OSSupport/WinStackWalker.h
)

set (SRCS
	ByteBufferTest.cpp
	Stubs.cpp
)

source_group("Shared" FILES ${SHARED_SRCS} ${SHARED_HDRS})
source_group("Sources" FILES ${SRCS})
add_executable(ByteBuffer-exe ${SRCS} ${SHARED_SRCS} ${SHARED_HDRS})
if (WIN32)
	target_link_libraries(ByteBuffer-exe ws2_32)
endif()
add_test(NAME ByteBuffer-test COMMAND ByteBuffer-exe)





# Put the projects into solution folders (MSVC):
set_target_properties(
	ByteBuffer-exe
	PROPERTIES FOLDER Tests
)