view examples/rot13/CMakeLists.txt @ 43:f744b9c6aba2

Add installation rules
author Louis Opter <kalessin@kalessin.fr>
date Mon, 22 Mar 2010 16:07:05 +0100
parents 7c8cd74023ce
children
line wrap: on
line source

SET(ROT13_SRC
    main.cpp
    Rot13Module.cpp
    Rot13Handler.cpp
    # Add headers so they appear into VS
    Rot13Handler.hpp
    Rot13Module.hpp
   )

ADD_EXECUTABLE(rot13 ${ROT13_SRC})

INSTALL(TARGETS rot13 RUNTIME
        DESTINATION bin
        COMPONENT Examples
       )