My problem is as such : I\'m developing a small parser using Visual Studio 2010. I use CMake as a build configuration tool.
But I find the default executable buildin
Most probably you will need to copy your binaries with a separate custom command which would look similar to this one:
add_custom_command(target your_target_name POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${EXAMPLE_BIN_NAME} ${PROJECT_BINARY_DIR}/. )