@ -108,6 +108,7 @@ if(WITH_WINDOWLESSNACLAPPLICATION)
add_library ( MagnumWindowlessNaClApplication STATIC WindowlessNaClApplication.cpp )
set_target_properties ( MagnumWindowlessNaClApplication PROPERTIES DEBUG_POSTFIX "-d" )
target_link_libraries ( MagnumWindowlessNaClApplication Magnum ppapi_cpp ppapi )
install ( FILES WindowlessNaClApplication.h DESTINATION ${ MAGNUM_INCLUDE_INSTALL_DIR } /Platform )
install ( TARGETS MagnumWindowlessNaClApplication
R U N T I M E D E S T I N A T I O N $ { M A G N U M _ B I N A R Y _ I N S T A L L _ D I R }
@ -171,6 +172,7 @@ if(WITH_WINDOWLESSGLXAPPLICATION)
set_target_properties ( MagnumWindowlessGlxApplication PROPERTIES
C O M P I L E _ F L A G S " - W n o - o l d - s t y l e - c a s t "
D E B U G _ P O S T F I X " - d " )
target_link_libraries ( MagnumWindowlessGlxApplication Magnum ${ X11_LIBRARIES } )
install ( FILES WindowlessGlxApplication.h DESTINATION ${ MAGNUM_INCLUDE_INSTALL_DIR } /Platform )
install ( TARGETS MagnumWindowlessGlxApplication
R U N T I M E D E S T I N A T I O N $ { M A G N U M _ B I N A R Y _ I N S T A L L _ D I R }
@ -184,6 +186,7 @@ if(WITH_WINDOWLESSWGLAPPLICATION)
set_target_properties ( MagnumWindowlessWglApplication PROPERTIES
C O M P I L E _ F L A G S " - D U N I C O D E "
D E B U G _ P O S T F I X " - d " )
target_link_libraries ( MagnumWindowlessWglApplication Magnum )
install ( FILES WindowlessWglApplication.h DESTINATION ${ MAGNUM_INCLUDE_INSTALL_DIR } /Platform )
install ( TARGETS MagnumWindowlessWglApplication
R U N T I M E D E S T I N A T I O N $ { M A G N U M _ B I N A R Y _ I N S T A L L _ D I R }
@ -194,6 +197,7 @@ endif()
# W i n d o w l e s s C G L a p p l i c a t i o n
if ( WITH_WINDOWLESSCGLAPPLICATION )
add_library ( MagnumWindowlessCglApplication STATIC WindowlessCglApplication.cpp )
target_link_libraries ( MagnumWindowlessCglApplication Magnum )
install ( FILES WindowlessCglApplication.h DESTINATION ${ MAGNUM_INCLUDE_INSTALL_DIR } /Platform )
install ( TARGETS MagnumWindowlessCglApplication
R U N T I M E D E S T I N A T I O N $ { M A G N U M _ B I N A R Y _ I N S T A L L _ D I R }
@ -235,9 +239,9 @@ if(WITH_MAGNUMINFO)
if ( CORRADE_TARGET_APPLE )
target_link_libraries ( magnum-info MagnumWindowlessCglApplication )
elseif ( CORRADE_TARGET_NACL )
target_link_libraries ( magnum-info MagnumWindowlessNaClApplication ppapi_cpp ppapi )
target_link_libraries ( magnum-info MagnumWindowlessNaClApplication )
elseif ( CORRADE_TARGET_UNIX )
target_link_libraries ( magnum-info MagnumWindowlessGlxApplication ${ X11_LIBRARIES } )
target_link_libraries ( magnum-info MagnumWindowlessGlxApplication )
elseif ( CORRADE_TARGET_WINDOWS )
target_link_libraries ( magnum-info MagnumWindowlessWglApplication )
else ( )