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

add_test(NAME TestStringIsOk
	COMMAND ${CMAKE_CURRENT_BINARY_DIR}/test_string_is_ok
	WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
)


