
add_executable(test_pstream main.cpp)
target_link_libraries(test_pstream phoenix_core)

add_test(NAME TestPStream
	COMMAND ${CMAKE_CURRENT_BINARY_DIR}/test_pstream
	WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
)

