1 2 3 4 5 6 7 8 9 10 11 12 13 14
# -*- cmake -*- # # Download viewer artwork even when using standalone include(Variables) include(Prebuilt) if (NOT STANDALONE) use_prebuilt_binary(artwork) else (NOT STANDALONE) set(STANDALONE OFF) use_prebuilt_binary(artwork) set(STANDALONE ON) endif (NOT STANDALONE)