

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

add_test(NAME TestPLog
	COMMAND ${CMAKE_CURRENT_BINARY_DIR}/test_plog
	WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
)


