summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/phong-cubes/CMakeLists.txt
blob: 1fb1a9c306ec9c413780f1b76a1ad7bab7e7d37d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# Generated from phong-cubes.pro.

cmake_minimum_required(VERSION 3.14)
project(phong-cubes LANGUAGES CXX)

set(CMAKE_INCLUDE_CURRENT_DIR ON)

set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)

if(NOT DEFINED INSTALL_EXAMPLESDIR)
  set(INSTALL_EXAMPLESDIR "examples")
endif()

set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}")

find_package(Qt6 COMPONENTS Core)
find_package(Qt6 COMPONENTS Gui)
find_package(Qt6 COMPONENTS Qml)
find_package(Qt6 COMPONENTS Quick)
find_package(Qt6 COMPONENTS 3DCore)
find_package(Qt6 COMPONENTS 3DRender)
find_package(Qt6 COMPONENTS 3DInput)
find_package(Qt6 COMPONENTS 3DQuick)
find_package(Qt6 COMPONENTS 3DQuickExtras)

qt_add_executable(phong-cubes
    main.cpp
)
set_target_properties(phong-cubes PROPERTIES
    WIN32_EXECUTABLE TRUE
    MACOSX_BUNDLE TRUE
)
target_link_libraries(phong-cubes PUBLIC
    Qt::3DCore
    Qt::3DInput
    Qt::3DQuick
    Qt::3DQuickExtras
    Qt::3DRender
    Qt::Core
    Qt::Gui
    Qt::Qml
    Qt::Quick
)


# Resources:
set(phong-cubes_resource_files
    "CubeEntity.qml"
    "main.qml"
)

qt6_add_resources(phong-cubes "phong-cubes"
    PREFIX
        "/"
    FILES
        ${phong-cubes_resource_files}
)
set(textures_resource_files
    "../exampleresources/assets/textures/aluminium_random_brushed/aluminium_random_brushed_basecolor.png"
    "../exampleresources/assets/textures/aluminium_random_brushed/aluminium_random_brushed_metallic.png"
    "../exampleresources/assets/textures/aluminium_random_brushed/aluminium_random_brushed_normal.png"
    "../exampleresources/assets/textures/aluminium_random_brushed/aluminium_random_brushed_roughness.png"
    "../exampleresources/assets/textures/american_walnut_crown_cut/american_walnut_crown_cut_basecolor.png"
    "../exampleresources/assets/textures/american_walnut_crown_cut/american_walnut_crown_cut_metallic.png"
    "../exampleresources/assets/textures/american_walnut_crown_cut/american_walnut_crown_cut_normal.png"
    "../exampleresources/assets/textures/american_walnut_crown_cut/american_walnut_crown_cut_roughness.png"
    "../exampleresources/assets/textures/ceramic_small_diamond/ceramic_small_diamond_ambient_occlusion.png"
    "../exampleresources/assets/textures/ceramic_small_diamond/ceramic_small_diamond_basecolor.png"
    "../exampleresources/assets/textures/ceramic_small_diamond/ceramic_small_diamond_metallic.png"
    "../exampleresources/assets/textures/ceramic_small_diamond/ceramic_small_diamond_normal.png"
    "../exampleresources/assets/textures/ceramic_small_diamond/ceramic_small_diamond_roughness.png"
    "../exampleresources/assets/textures/ceramic_tiles_brown_tomato/ceramic_tiles_brown_tomato_basecolor.png"
    "../exampleresources/assets/textures/ceramic_tiles_brown_tomato/ceramic_tiles_brown_tomato_metallic.png"
    "../exampleresources/assets/textures/ceramic_tiles_brown_tomato/ceramic_tiles_brown_tomato_normal.png"
    "../exampleresources/assets/textures/ceramic_tiles_brown_tomato/ceramic_tiles_brown_tomato_roughness.png"
    "../exampleresources/assets/textures/copper_brushed/copper_brushed_basecolor.png"
    "../exampleresources/assets/textures/copper_brushed/copper_brushed_metallic.png"
    "../exampleresources/assets/textures/copper_brushed/copper_brushed_normal.png"
    "../exampleresources/assets/textures/copper_brushed/copper_brushed_roughness.png"
    "../exampleresources/assets/textures/gold_leaf_waste/gold_leaf_waste_basecolor.png"
    "../exampleresources/assets/textures/gold_leaf_waste/gold_leaf_waste_metallic.png"
    "../exampleresources/assets/textures/gold_leaf_waste/gold_leaf_waste_normal.png"
    "../exampleresources/assets/textures/gold_leaf_waste/gold_leaf_waste_roughness.png"
    "../exampleresources/assets/textures/no-ao.png"
)

qt6_add_resources(phong-cubes "textures"
    PREFIX
        "/"
    BASE
        "../exampleresources"
    FILES
        ${textures_resource_files}
)

install(TARGETS phong-cubes
    RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
    BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
    LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
)