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

add_test(NAME TestConvertToString
	COMMAND ${CMAKE_CURRENT_BINARY_DIR}/test_convert_to_string
	WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
)


