diff --git a/CMakeLists.txt b/CMakeLists.txt index 4810545..7e84677 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,6 +18,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_EXPORT_COMPILE_COMMANDS ON) set(CMAKE_MACOSX_BUNDLE ON) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) +set(CMAKE_AUTORCC_OPTIONS --binary) if(WIN32) set(CMAKE_COMPILE_WARNING_AS_ERROR OFF) diff --git a/example-app/examplescene.cpp b/example-app/examplescene.cpp index 2f397e8..ecd60d0 100644 --- a/example-app/examplescene.cpp +++ b/example-app/examplescene.cpp @@ -22,7 +22,13 @@ ExampleScene::~ExampleScene() = default; void ExampleScene::init() { - setSkybox(new Qtk::Skybox("Skybox")); + setSkybox(new Qtk::Skybox(":/textures/skybox/right.png", + ":/textures/skybox/top.png", + ":/textures/skybox/front.png", + ":/textures/skybox/left.png", + ":/textures/skybox/bottom.png", + ":/textures/skybox/back.png", + "Skybox")); std::string spartanPath = QTK_EXAMPLE_SOURCE_DIR; spartanPath += "/../resources/models/spartan/spartan.obj";