Compare commits
32 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 14c143ff56 | |||
| 4ef359d64c | |||
| 4d8d1316e0 | |||
| e440779338 | |||
| fc5eba1279 | |||
| 83f132a1c4 | |||
| a2eee90e10 | |||
| fa6d6cf76e | |||
| a16cc97048 | |||
| 4b75af28f8 | |||
| 331aaae279 | |||
| 298db61ace | |||
| 83928c9bd7 | |||
| 0d4b6d1242 | |||
| 23798ab582 | |||
| 842f384bb8 | |||
| 9189246361 | |||
| f8fdc1dc84 | |||
| a2a299c0a1 | |||
| f15e13475d | |||
| 10d7c806ec | |||
| 945a85cacf | |||
| a118eedb18 | |||
| 2d417cec32 | |||
| c1627b1759 | |||
| 3266cc38db | |||
| f8dde34b83 | |||
| ba5e071c6f | |||
| 52b2a95032 | |||
| 474b4e6c8c | |||
| 8397164b6b | |||
| a95e98ed8a |
@@ -10,6 +10,10 @@ compile_commands.json
|
|||||||
CTestTestfile.cmake
|
CTestTestfile.cmake
|
||||||
_deps
|
_deps
|
||||||
CMakeUserPresets.json
|
CMakeUserPresets.json
|
||||||
|
.cmake
|
||||||
|
obj
|
||||||
|
CPackConfig.cmake
|
||||||
|
CPackSourceConfig.cmake
|
||||||
|
|
||||||
# CLion
|
# CLion
|
||||||
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
||||||
|
|||||||
+34
-4
@@ -19,13 +19,43 @@ FetchContent_Declare(
|
|||||||
)
|
)
|
||||||
FetchContent_MakeAvailable(glm)
|
FetchContent_MakeAvailable(glm)
|
||||||
|
|
||||||
|
# Aggiunta ImGUI
|
||||||
|
|
||||||
|
|
||||||
|
FetchContent_Declare(ImGui
|
||||||
|
GIT_REPOSITORY https://github.com/ocornut/imgui
|
||||||
|
GIT_TAG v1.91.9b
|
||||||
|
GIT_SHALLOW ON
|
||||||
|
EXCLUDE_FROM_ALL
|
||||||
|
SYSTEM)
|
||||||
|
FetchContent_MakeAvailable(ImGui)
|
||||||
|
FetchContent_GetProperties(ImGui SOURCE_DIR IMGUI_DIR)
|
||||||
|
|
||||||
|
set(IMGUI_SFML_FIND_SFML OFF)
|
||||||
|
FetchContent_Declare(ImGui-SFML
|
||||||
|
GIT_REPOSITORY https://github.com/SFML/imgui-sfml
|
||||||
|
GIT_TAG v3.0
|
||||||
|
GIT_SHALLOW ON
|
||||||
|
EXCLUDE_FROM_ALL
|
||||||
|
SYSTEM)
|
||||||
|
FetchContent_MakeAvailable(ImGui-SFML)
|
||||||
|
|
||||||
|
add_library(common INTERFACE)
|
||||||
|
target_compile_features(common INTERFACE cxx_std_17)
|
||||||
|
target_compile_options(common INTERFACE
|
||||||
|
$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>: -Wall>
|
||||||
|
$<$<CXX_COMPILER_ID:MSVC>: /W4>
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
# Fine aggiunta
|
||||||
|
|
||||||
|
|
||||||
set(METHODS_PATH "./src/*/methods/*.cpp")
|
set(METHODS_PATH "./src/*/methods/*.cpp")
|
||||||
|
|
||||||
|
set(VERSION "V7")
|
||||||
set(VERSION "V4")
|
|
||||||
|
|
||||||
file(GLOB_RECURSE METHODS_SRC "${METHODS_PATH}")
|
file(GLOB_RECURSE METHODS_SRC "${METHODS_PATH}")
|
||||||
add_executable(main${VERSION} ./src/testMain.cpp ${METHODS_SRC} )
|
add_executable(main${VERSION} ./src/testMain.cpp ${METHODS_SRC} )
|
||||||
target_compile_features(main${VERSION} PRIVATE cxx_std_17)
|
target_link_libraries(main${VERSION} PRIVATE SFML::Graphics ImGui-SFML::ImGui-SFML common glm)
|
||||||
target_link_libraries(main${VERSION} PRIVATE SFML::Graphics glm)
|
target_compile_definitions(main${VERSION} PRIVATE $<$<CONFIG:Debug>:DEBUG_MODE>)
|
||||||
@@ -32,11 +32,28 @@ Per spostare l'intera scena si tiene premuto il tasto centrale del mouse.
|
|||||||
- Modifica calcolo pivot per gestire spazio 3D
|
- Modifica calcolo pivot per gestire spazio 3D
|
||||||
- Aggiustati assi di riferimento (ora sono coerenti su tutte le classi)
|
- Aggiustati assi di riferimento (ora sono coerenti su tutte le classi)
|
||||||
|
|
||||||
|
## Nella versione v0.5
|
||||||
|
- Aggiunta ImGUI
|
||||||
|
- Aggiunta selettore sulla posizione dei dati
|
||||||
|
- Refactoring classe sensore e state per gestire posizione dati da gui
|
||||||
|
|
||||||
# Per compliare:
|
## Nella versione v0.6
|
||||||
|
- Aggiunta collezioni
|
||||||
|
- Servono a semplificare la struttura del main e il disegno degli elementi della gamba
|
||||||
|
- Modifica di sfml_util per gestire le collezioni
|
||||||
|
- Aggiunta modalità debug
|
||||||
|
|
||||||
|
## Nella versione v0.7
|
||||||
|
- Aggiunta impostazione di trasparenza dei pezzi
|
||||||
|
- Aggiustato cambio direzione della gamba (sulla visualizzazione dei piani XZ e -XZ)
|
||||||
|
- Aggiunto controllo trasparenza delle collezioni
|
||||||
|
- Modificato lower_body per gestire la trasparenza della gamba più lontana
|
||||||
|
- Ridimensionato bacino per migiore visualizzazione
|
||||||
|
|
||||||
|
# Per compilare:
|
||||||
|
|
||||||
cmake --build
|
cmake --build
|
||||||
|
|
||||||
# Per lanciare:
|
# Per lanciare:
|
||||||
|
|
||||||
./build/bin/mainV4
|
./build/bin/mainV7
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,571 +0,0 @@
|
|||||||
{
|
|
||||||
"configurations" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"directories" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"build" : ".",
|
|
||||||
"childIndexes" :
|
|
||||||
[
|
|
||||||
1,
|
|
||||||
17
|
|
||||||
],
|
|
||||||
"hasInstallRule" : true,
|
|
||||||
"jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "3.28"
|
|
||||||
},
|
|
||||||
"projectIndex" : 0,
|
|
||||||
"source" : ".",
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
4
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build",
|
|
||||||
"childIndexes" :
|
|
||||||
[
|
|
||||||
2
|
|
||||||
],
|
|
||||||
"hasInstallRule" : true,
|
|
||||||
"jsonFile" : "directory-_deps.sfml-build-Debug-1a80d5472b4a682d8498.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "3.24"
|
|
||||||
},
|
|
||||||
"parentIndex" : 0,
|
|
||||||
"projectIndex" : 1,
|
|
||||||
"source" : "build/_deps/sfml-src"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML",
|
|
||||||
"childIndexes" :
|
|
||||||
[
|
|
||||||
3,
|
|
||||||
4,
|
|
||||||
5,
|
|
||||||
6,
|
|
||||||
7,
|
|
||||||
9
|
|
||||||
],
|
|
||||||
"hasInstallRule" : true,
|
|
||||||
"jsonFile" : "directory-_deps.sfml-build.src.SFML-Debug-ce43665c07032d56571e.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "3.24"
|
|
||||||
},
|
|
||||||
"parentIndex" : 1,
|
|
||||||
"projectIndex" : 1,
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/System",
|
|
||||||
"hasInstallRule" : true,
|
|
||||||
"jsonFile" : "directory-_deps.sfml-build.src.SFML.System-Debug-03ccc1777f3d48c79911.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "3.24"
|
|
||||||
},
|
|
||||||
"parentIndex" : 2,
|
|
||||||
"projectIndex" : 1,
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/System",
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
10
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/Main",
|
|
||||||
"hasInstallRule" : true,
|
|
||||||
"jsonFile" : "directory-_deps.sfml-build.src.SFML.Main-Debug-65c53ab35cff307be5a3.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "3.24"
|
|
||||||
},
|
|
||||||
"parentIndex" : 2,
|
|
||||||
"projectIndex" : 1,
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/Main",
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
8
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/Window",
|
|
||||||
"hasInstallRule" : true,
|
|
||||||
"jsonFile" : "directory-_deps.sfml-build.src.SFML.Window-Debug-2564d4b7dc0f91b7fcdd.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "3.24"
|
|
||||||
},
|
|
||||||
"parentIndex" : 2,
|
|
||||||
"projectIndex" : 1,
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/Window",
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
11
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/Network",
|
|
||||||
"hasInstallRule" : true,
|
|
||||||
"jsonFile" : "directory-_deps.sfml-build.src.SFML.Network-Debug-3ff6a78e6fdec9aa59b8.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "3.24"
|
|
||||||
},
|
|
||||||
"parentIndex" : 2,
|
|
||||||
"projectIndex" : 1,
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/Network",
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
9
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/Graphics",
|
|
||||||
"childIndexes" :
|
|
||||||
[
|
|
||||||
8
|
|
||||||
],
|
|
||||||
"hasInstallRule" : true,
|
|
||||||
"jsonFile" : "directory-_deps.sfml-build.src.SFML.Graphics-Debug-a5fc5ba2ce80bc369ab4.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "3.24"
|
|
||||||
},
|
|
||||||
"parentIndex" : 2,
|
|
||||||
"projectIndex" : 1,
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/Graphics",
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
7
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/freetype-build",
|
|
||||||
"hasInstallRule" : true,
|
|
||||||
"jsonFile" : "directory-_deps.freetype-build-Debug-4e7fb44fc5badcffdb4f.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "3.0"
|
|
||||||
},
|
|
||||||
"parentIndex" : 7,
|
|
||||||
"projectIndex" : 2,
|
|
||||||
"source" : "build/_deps/freetype-src",
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
2
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/Audio",
|
|
||||||
"childIndexes" :
|
|
||||||
[
|
|
||||||
10,
|
|
||||||
11,
|
|
||||||
15
|
|
||||||
],
|
|
||||||
"hasInstallRule" : true,
|
|
||||||
"jsonFile" : "directory-_deps.sfml-build.src.SFML.Audio-Debug-6de2257221629af261b1.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "3.24"
|
|
||||||
},
|
|
||||||
"parentIndex" : 2,
|
|
||||||
"projectIndex" : 1,
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/Audio",
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
6
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/ogg-build",
|
|
||||||
"hasInstallRule" : true,
|
|
||||||
"jsonFile" : "directory-_deps.ogg-build-Debug-a6bb94daf2f512cf5594.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "2.8.12"
|
|
||||||
},
|
|
||||||
"parentIndex" : 9,
|
|
||||||
"projectIndex" : 3,
|
|
||||||
"source" : "build/_deps/ogg-src",
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
5
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/flac-build",
|
|
||||||
"childIndexes" :
|
|
||||||
[
|
|
||||||
12,
|
|
||||||
14
|
|
||||||
],
|
|
||||||
"hasInstallRule" : true,
|
|
||||||
"jsonFile" : "directory-_deps.flac-build-Debug-c24739fdc1f05bf5344b.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "3.5"
|
|
||||||
},
|
|
||||||
"parentIndex" : 9,
|
|
||||||
"projectIndex" : 4,
|
|
||||||
"source" : "build/_deps/flac-src"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/flac-build/src",
|
|
||||||
"childIndexes" :
|
|
||||||
[
|
|
||||||
13
|
|
||||||
],
|
|
||||||
"hasInstallRule" : true,
|
|
||||||
"jsonFile" : "directory-_deps.flac-build.src-Debug-1d4dfeeba802ece90ca9.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "3.11"
|
|
||||||
},
|
|
||||||
"parentIndex" : 11,
|
|
||||||
"projectIndex" : 4,
|
|
||||||
"source" : "build/_deps/flac-src/src"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/flac-build/src/libFLAC",
|
|
||||||
"hasInstallRule" : true,
|
|
||||||
"jsonFile" : "directory-_deps.flac-build.src.libFLAC-Debug-a719ae2ad27bb873d72d.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "3.11"
|
|
||||||
},
|
|
||||||
"parentIndex" : 12,
|
|
||||||
"projectIndex" : 4,
|
|
||||||
"source" : "build/_deps/flac-src/src/libFLAC",
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/flac-build/microbench",
|
|
||||||
"jsonFile" : "directory-_deps.flac-build.microbench-Debug-ebc5923c3599b4f464c5.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "3.5"
|
|
||||||
},
|
|
||||||
"parentIndex" : 11,
|
|
||||||
"projectIndex" : 4,
|
|
||||||
"source" : "build/_deps/flac-src/microbench",
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
1
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/vorbis-build",
|
|
||||||
"childIndexes" :
|
|
||||||
[
|
|
||||||
16
|
|
||||||
],
|
|
||||||
"hasInstallRule" : true,
|
|
||||||
"jsonFile" : "directory-_deps.vorbis-build-Debug-d0d3f7f6a15b4cebe23e.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "2.8.12"
|
|
||||||
},
|
|
||||||
"parentIndex" : 9,
|
|
||||||
"projectIndex" : 5,
|
|
||||||
"source" : "build/_deps/vorbis-src"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/vorbis-build/lib",
|
|
||||||
"hasInstallRule" : true,
|
|
||||||
"jsonFile" : "directory-_deps.vorbis-build.lib-Debug-ab0e0463d28264055dff.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "2.8.12"
|
|
||||||
},
|
|
||||||
"parentIndex" : 15,
|
|
||||||
"projectIndex" : 5,
|
|
||||||
"source" : "build/_deps/vorbis-src/lib",
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
12,
|
|
||||||
13,
|
|
||||||
14
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/glm-build",
|
|
||||||
"childIndexes" :
|
|
||||||
[
|
|
||||||
18
|
|
||||||
],
|
|
||||||
"jsonFile" : "directory-_deps.glm-build-Debug-935468e39a55af38ff33.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "3.6"
|
|
||||||
},
|
|
||||||
"parentIndex" : 0,
|
|
||||||
"projectIndex" : 6,
|
|
||||||
"source" : "build/_deps/glm-src"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"build" : "_deps/glm-build/glm",
|
|
||||||
"jsonFile" : "directory-_deps.glm-build.glm-Debug-ae6a6ae02e317224d57b.json",
|
|
||||||
"minimumCMakeVersion" :
|
|
||||||
{
|
|
||||||
"string" : "3.6"
|
|
||||||
},
|
|
||||||
"parentIndex" : 17,
|
|
||||||
"projectIndex" : 6,
|
|
||||||
"source" : "build/_deps/glm-src/glm",
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
3
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"name" : "Debug",
|
|
||||||
"projects" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"childIndexes" :
|
|
||||||
[
|
|
||||||
1,
|
|
||||||
6
|
|
||||||
],
|
|
||||||
"directoryIndexes" :
|
|
||||||
[
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"name" : "CMakeSFMLProject",
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
4
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"childIndexes" :
|
|
||||||
[
|
|
||||||
2,
|
|
||||||
3,
|
|
||||||
4,
|
|
||||||
5
|
|
||||||
],
|
|
||||||
"directoryIndexes" :
|
|
||||||
[
|
|
||||||
1,
|
|
||||||
2,
|
|
||||||
3,
|
|
||||||
4,
|
|
||||||
5,
|
|
||||||
6,
|
|
||||||
7,
|
|
||||||
9
|
|
||||||
],
|
|
||||||
"name" : "SFML",
|
|
||||||
"parentIndex" : 0,
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
6,
|
|
||||||
7,
|
|
||||||
8,
|
|
||||||
9,
|
|
||||||
10,
|
|
||||||
11
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndexes" :
|
|
||||||
[
|
|
||||||
8
|
|
||||||
],
|
|
||||||
"name" : "freetype",
|
|
||||||
"parentIndex" : 1,
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
2
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndexes" :
|
|
||||||
[
|
|
||||||
10
|
|
||||||
],
|
|
||||||
"name" : "libogg",
|
|
||||||
"parentIndex" : 1,
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
5
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndexes" :
|
|
||||||
[
|
|
||||||
11,
|
|
||||||
12,
|
|
||||||
13,
|
|
||||||
14
|
|
||||||
],
|
|
||||||
"name" : "FLAC",
|
|
||||||
"parentIndex" : 1,
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
1
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndexes" :
|
|
||||||
[
|
|
||||||
15,
|
|
||||||
16
|
|
||||||
],
|
|
||||||
"name" : "vorbis",
|
|
||||||
"parentIndex" : 1,
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
12,
|
|
||||||
13,
|
|
||||||
14
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndexes" :
|
|
||||||
[
|
|
||||||
17,
|
|
||||||
18
|
|
||||||
],
|
|
||||||
"name" : "glm",
|
|
||||||
"parentIndex" : 0,
|
|
||||||
"targetIndexes" :
|
|
||||||
[
|
|
||||||
3
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"targets" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"directoryIndex" : 13,
|
|
||||||
"id" : "FLAC::@d572677c3819035d9b3d",
|
|
||||||
"jsonFile" : "target-FLAC-Debug-0dbdc2a8040bb37d1a0d.json",
|
|
||||||
"name" : "FLAC",
|
|
||||||
"projectIndex" : 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndex" : 14,
|
|
||||||
"id" : "benchmark_residual::@3956ab943ce8cc4f6f98",
|
|
||||||
"jsonFile" : "target-benchmark_residual-Debug-3260ad5ef6f59731ddb6.json",
|
|
||||||
"name" : "benchmark_residual",
|
|
||||||
"projectIndex" : 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndex" : 8,
|
|
||||||
"id" : "freetype::@d06f9f5ffc3cc0b4bd77",
|
|
||||||
"jsonFile" : "target-freetype-Debug-430173adcfb554f7fea9.json",
|
|
||||||
"name" : "freetype",
|
|
||||||
"projectIndex" : 2
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndex" : 18,
|
|
||||||
"id" : "glm::@ce54d98d7b326a3e12a8",
|
|
||||||
"jsonFile" : "target-glm-Debug-b40eb46a5bde08fbecd8.json",
|
|
||||||
"name" : "glm",
|
|
||||||
"projectIndex" : 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndex" : 0,
|
|
||||||
"id" : "mainV4::@6890427a1f51a3e7e1df",
|
|
||||||
"jsonFile" : "target-mainV4-Debug-5425fbbbfc48cb1dc18b.json",
|
|
||||||
"name" : "mainV4",
|
|
||||||
"projectIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndex" : 10,
|
|
||||||
"id" : "ogg::@4e5ed7d02827854e35f8",
|
|
||||||
"jsonFile" : "target-ogg-Debug-083e815486e426c18c3a.json",
|
|
||||||
"name" : "ogg",
|
|
||||||
"projectIndex" : 3
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndex" : 9,
|
|
||||||
"id" : "sfml-audio::@a153e5727587c53fce98",
|
|
||||||
"jsonFile" : "target-sfml-audio-Debug-1626d68d8de2b5c11057.json",
|
|
||||||
"name" : "sfml-audio",
|
|
||||||
"projectIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndex" : 7,
|
|
||||||
"id" : "sfml-graphics::@98af38147d5fa7e70f61",
|
|
||||||
"jsonFile" : "target-sfml-graphics-Debug-0f21a651094bf3e0f188.json",
|
|
||||||
"name" : "sfml-graphics",
|
|
||||||
"projectIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndex" : 4,
|
|
||||||
"id" : "sfml-main::@81ec5539f1398dd625f6",
|
|
||||||
"jsonFile" : "target-sfml-main-Debug-2c4e29ecbe0f81b27a05.json",
|
|
||||||
"name" : "sfml-main",
|
|
||||||
"projectIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndex" : 6,
|
|
||||||
"id" : "sfml-network::@d7f79968b2699e7782cb",
|
|
||||||
"jsonFile" : "target-sfml-network-Debug-8420b49f951f1ab0ddb9.json",
|
|
||||||
"name" : "sfml-network",
|
|
||||||
"projectIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndex" : 3,
|
|
||||||
"id" : "sfml-system::@8cb1db2982443611e568",
|
|
||||||
"jsonFile" : "target-sfml-system-Debug-99b870f8ca3bbfcc38d3.json",
|
|
||||||
"name" : "sfml-system",
|
|
||||||
"projectIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndex" : 5,
|
|
||||||
"id" : "sfml-window::@5730451e331e3690ae65",
|
|
||||||
"jsonFile" : "target-sfml-window-Debug-21a6d77cd38eb1cd146c.json",
|
|
||||||
"name" : "sfml-window",
|
|
||||||
"projectIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndex" : 16,
|
|
||||||
"id" : "vorbis::@692b0ee2b61df6760d20",
|
|
||||||
"jsonFile" : "target-vorbis-Debug-df928f77e59c4f692b59.json",
|
|
||||||
"name" : "vorbis",
|
|
||||||
"projectIndex" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndex" : 16,
|
|
||||||
"id" : "vorbisenc::@692b0ee2b61df6760d20",
|
|
||||||
"jsonFile" : "target-vorbisenc-Debug-39f148f349ffc01ccbdc.json",
|
|
||||||
"name" : "vorbisenc",
|
|
||||||
"projectIndex" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"directoryIndex" : 16,
|
|
||||||
"id" : "vorbisfile::@692b0ee2b61df6760d20",
|
|
||||||
"jsonFile" : "target-vorbisfile-Debug-9e45b7d44044176c74c8.json",
|
|
||||||
"name" : "vorbisfile",
|
|
||||||
"projectIndex" : 5
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"kind" : "codemodel",
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build",
|
|
||||||
"source" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata"
|
|
||||||
},
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 2,
|
|
||||||
"minor" : 7
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" : [],
|
|
||||||
"files" : [],
|
|
||||||
"nodes" : []
|
|
||||||
},
|
|
||||||
"installers" : [],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : ".",
|
|
||||||
"source" : "."
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,85 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"install"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/flac-src/CMakeLists.txt"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 242,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 254,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 259,
|
|
||||||
"parent" : 0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"installers" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib/cmake/FLAC",
|
|
||||||
"exportName" : "targets",
|
|
||||||
"exportTargets" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"id" : "FLAC::@d572677c3819035d9b3d",
|
|
||||||
"index" : 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/flac-build/CMakeFiles/Export/baf7b64a9c1b56d368d1c4c52c93ff8a/targets.cmake"
|
|
||||||
],
|
|
||||||
"type" : "export"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib/cmake/FLAC",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"build/_deps/flac-build/flac-config.cmake",
|
|
||||||
"build/_deps/flac-build/flac-config-version.cmake"
|
|
||||||
],
|
|
||||||
"type" : "file"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib/cmake/FLAC",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"build/_deps/flac-build/flac-config.cmake",
|
|
||||||
"build/_deps/flac-build/flac-config-version.cmake"
|
|
||||||
],
|
|
||||||
"type" : "file"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/flac-build",
|
|
||||||
"source" : "build/_deps/flac-src"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-14
@@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" : [],
|
|
||||||
"files" : [],
|
|
||||||
"nodes" : []
|
|
||||||
},
|
|
||||||
"installers" : [],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/flac-build/microbench",
|
|
||||||
"source" : "build/_deps/flac-src/microbench"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-14
@@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" : [],
|
|
||||||
"files" : [],
|
|
||||||
"nodes" : []
|
|
||||||
},
|
|
||||||
"installers" : [],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/flac-build/src",
|
|
||||||
"source" : "build/_deps/flac-src/src"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-45
@@ -1,45 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"install"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/flac-src/src/libFLAC/CMakeLists.txt"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 113,
|
|
||||||
"parent" : 0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"installers" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/lib/libFLACd.a"
|
|
||||||
],
|
|
||||||
"targetId" : "FLAC::@d572677c3819035d9b3d",
|
|
||||||
"targetIndex" : 0,
|
|
||||||
"type" : "target"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/flac-build/src/libFLAC",
|
|
||||||
"source" : "build/_deps/flac-src/src/libFLAC"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-89
@@ -1,89 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"install"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/freetype-src/CMakeLists.txt"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 631,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 639,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 644,
|
|
||||||
"parent" : 0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"installers" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/lib/libfreetyped.a"
|
|
||||||
],
|
|
||||||
"targetId" : "freetype::@d06f9f5ffc3cc0b4bd77",
|
|
||||||
"targetIndex" : 2,
|
|
||||||
"type" : "target"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"component" : "headers",
|
|
||||||
"destination" : "lib/cmake/freetype",
|
|
||||||
"exportName" : "freetype-targets",
|
|
||||||
"exportTargets" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"id" : "freetype::@d06f9f5ffc3cc0b4bd77",
|
|
||||||
"index" : 2
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id" : "freetype-interface::@d06f9f5ffc3cc0b4bd77",
|
|
||||||
"index" : 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/freetype-build/CMakeFiles/Export/778b4f54a68e80ec034bf381f364ca2c/freetype-config.cmake"
|
|
||||||
],
|
|
||||||
"type" : "export"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"component" : "headers",
|
|
||||||
"destination" : "lib/cmake/freetype",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"build/_deps/freetype-build/freetype-config-version.cmake"
|
|
||||||
],
|
|
||||||
"type" : "file"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/freetype-build",
|
|
||||||
"source" : "build/_deps/freetype-src"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" : [],
|
|
||||||
"files" : [],
|
|
||||||
"nodes" : []
|
|
||||||
},
|
|
||||||
"installers" : [],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/glm-build",
|
|
||||||
"source" : "build/_deps/glm-src"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-14
@@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" : [],
|
|
||||||
"files" : [],
|
|
||||||
"nodes" : []
|
|
||||||
},
|
|
||||||
"installers" : [],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/glm-build/glm",
|
|
||||||
"source" : "build/_deps/glm-src/glm"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,86 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"install"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/ogg-src/CMakeLists.txt"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 122,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 135,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 152,
|
|
||||||
"parent" : 0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"installers" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/lib/liboggd.a"
|
|
||||||
],
|
|
||||||
"targetId" : "ogg::@4e5ed7d02827854e35f8",
|
|
||||||
"targetIndex" : 5,
|
|
||||||
"type" : "target"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib/cmake/Ogg",
|
|
||||||
"exportName" : "OggTargets",
|
|
||||||
"exportTargets" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"id" : "ogg::@4e5ed7d02827854e35f8",
|
|
||||||
"index" : 5
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/ogg-build/CMakeFiles/Export/dee6fd410a50d06b294b496f57355584/OggTargets.cmake"
|
|
||||||
],
|
|
||||||
"type" : "export"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib/cmake/Ogg",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"build/_deps/ogg-build/OggConfig.cmake",
|
|
||||||
"build/_deps/ogg-build/OggConfigVersion.cmake"
|
|
||||||
],
|
|
||||||
"type" : "file"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/ogg-build",
|
|
||||||
"source" : "build/_deps/ogg-src"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,266 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"install",
|
|
||||||
"sfml_export_targets"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-src/CMakeLists.txt",
|
|
||||||
"build/_deps/sfml-src/cmake/Macros.cmake"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 247,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 251,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 359,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 360,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 377,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 442,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 442,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 442,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 442,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 442,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 442,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 447,
|
|
||||||
"parent" : 5
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"installers" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"component" : "devel",
|
|
||||||
"destination" : "include",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"from" : "build/_deps/sfml-src/include",
|
|
||||||
"to" : "."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type" : "directory"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"component" : "devel",
|
|
||||||
"destination" : "lib/cmake/SFML",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"from" : "build/_deps/sfml-src/cmake/Modules",
|
|
||||||
"to" : "."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type" : "directory"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "share/doc/SFML",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-src/license.md"
|
|
||||||
],
|
|
||||||
"type" : "file"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "share/doc/SFML",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-src/readme.md"
|
|
||||||
],
|
|
||||||
"type" : "file"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib/cmake/SFML",
|
|
||||||
"exportName" : "SFMLSystemStaticTargets",
|
|
||||||
"exportTargets" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"id" : "sfml-system::@8cb1db2982443611e568",
|
|
||||||
"index" : 10
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLSystemStaticTargets.cmake"
|
|
||||||
],
|
|
||||||
"type" : "export"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib/cmake/SFML",
|
|
||||||
"exportName" : "SFMLMainStaticTargets",
|
|
||||||
"exportTargets" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"id" : "sfml-main::@81ec5539f1398dd625f6",
|
|
||||||
"index" : 8
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLMainStaticTargets.cmake"
|
|
||||||
],
|
|
||||||
"type" : "export"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib/cmake/SFML",
|
|
||||||
"exportName" : "SFMLWindowStaticTargets",
|
|
||||||
"exportTargets" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"id" : "sfml-window::@5730451e331e3690ae65",
|
|
||||||
"index" : 11
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLWindowStaticTargets.cmake"
|
|
||||||
],
|
|
||||||
"type" : "export"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 9,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib/cmake/SFML",
|
|
||||||
"exportName" : "SFMLNetworkStaticTargets",
|
|
||||||
"exportTargets" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"id" : "sfml-network::@d7f79968b2699e7782cb",
|
|
||||||
"index" : 9
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLNetworkStaticTargets.cmake"
|
|
||||||
],
|
|
||||||
"type" : "export"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 10,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib/cmake/SFML",
|
|
||||||
"exportName" : "SFMLGraphicsStaticTargets",
|
|
||||||
"exportTargets" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"id" : "sfml-graphics::@98af38147d5fa7e70f61",
|
|
||||||
"index" : 7
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLGraphicsStaticTargets.cmake"
|
|
||||||
],
|
|
||||||
"type" : "export"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 11,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib/cmake/SFML",
|
|
||||||
"exportName" : "SFMLAudioStaticTargets",
|
|
||||||
"exportTargets" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"id" : "sfml-audio::@a153e5727587c53fce98",
|
|
||||||
"index" : 6
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLAudioStaticTargets.cmake"
|
|
||||||
],
|
|
||||||
"type" : "export"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 12,
|
|
||||||
"component" : "devel",
|
|
||||||
"destination" : "lib/cmake/SFML",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-build/SFMLConfig.cmake",
|
|
||||||
"build/_deps/sfml-build/SFMLConfigVersion.cmake"
|
|
||||||
],
|
|
||||||
"type" : "file"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build",
|
|
||||||
"source" : "build/_deps/sfml-src"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-14
@@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" : [],
|
|
||||||
"files" : [],
|
|
||||||
"nodes" : []
|
|
||||||
},
|
|
||||||
"installers" : [],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML",
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-69
@@ -1,69 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"install",
|
|
||||||
"sfml_add_library"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-src/cmake/Macros.cmake",
|
|
||||||
"build/_deps/sfml-src/src/SFML/Audio/CMakeLists.txt"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 165,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 232,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 256,
|
|
||||||
"parent" : 1
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"installers" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"component" : "devel",
|
|
||||||
"destination" : "lib",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/lib/libsfml-audio-s-d.a"
|
|
||||||
],
|
|
||||||
"targetId" : "sfml-audio::@a153e5727587c53fce98",
|
|
||||||
"targetIndex" : 6,
|
|
||||||
"type" : "target"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"component" : "devel",
|
|
||||||
"destination" : "lib/cmake/SFML",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-build/src/SFML/Audio/SFMLAudioDependencies.cmake"
|
|
||||||
],
|
|
||||||
"type" : "file"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/Audio",
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/Audio"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-69
@@ -1,69 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"install",
|
|
||||||
"sfml_add_library"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-src/cmake/Macros.cmake",
|
|
||||||
"build/_deps/sfml-src/src/SFML/Graphics/CMakeLists.txt"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 88,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 232,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 256,
|
|
||||||
"parent" : 1
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"installers" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"component" : "devel",
|
|
||||||
"destination" : "lib",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/lib/libsfml-graphics-s-d.a"
|
|
||||||
],
|
|
||||||
"targetId" : "sfml-graphics::@98af38147d5fa7e70f61",
|
|
||||||
"targetIndex" : 7,
|
|
||||||
"type" : "target"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"component" : "devel",
|
|
||||||
"destination" : "lib/cmake/SFML",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-build/src/SFML/Graphics/SFMLGraphicsDependencies.cmake"
|
|
||||||
],
|
|
||||||
"type" : "file"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/Graphics",
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/Graphics"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-53
@@ -1,53 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"install",
|
|
||||||
"sfml_add_library"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-src/cmake/Macros.cmake",
|
|
||||||
"build/_deps/sfml-src/src/SFML/Main/CMakeLists.txt"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 16,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 232,
|
|
||||||
"parent" : 1
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"installers" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"component" : "devel",
|
|
||||||
"destination" : "lib",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/lib/libsfml-main-s-d.a"
|
|
||||||
],
|
|
||||||
"targetId" : "sfml-main::@81ec5539f1398dd625f6",
|
|
||||||
"targetIndex" : 8,
|
|
||||||
"type" : "target"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/Main",
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/Main"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-53
@@ -1,53 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"install",
|
|
||||||
"sfml_add_library"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-src/cmake/Macros.cmake",
|
|
||||||
"build/_deps/sfml-src/src/SFML/Network/CMakeLists.txt"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 43,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 232,
|
|
||||||
"parent" : 1
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"installers" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"component" : "devel",
|
|
||||||
"destination" : "lib",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/lib/libsfml-network-s-d.a"
|
|
||||||
],
|
|
||||||
"targetId" : "sfml-network::@d7f79968b2699e7782cb",
|
|
||||||
"targetIndex" : 9,
|
|
||||||
"type" : "target"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/Network",
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/Network"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-69
@@ -1,69 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"install",
|
|
||||||
"sfml_add_library"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-src/cmake/Macros.cmake",
|
|
||||||
"build/_deps/sfml-src/src/SFML/System/CMakeLists.txt"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 72,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 232,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 256,
|
|
||||||
"parent" : 1
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"installers" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"component" : "devel",
|
|
||||||
"destination" : "lib",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/lib/libsfml-system-s-d.a"
|
|
||||||
],
|
|
||||||
"targetId" : "sfml-system::@8cb1db2982443611e568",
|
|
||||||
"targetIndex" : 10,
|
|
||||||
"type" : "target"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"component" : "devel",
|
|
||||||
"destination" : "lib/cmake/SFML",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-build/src/SFML/System/SFMLSystemDependencies.cmake"
|
|
||||||
],
|
|
||||||
"type" : "file"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/System",
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/System"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-69
@@ -1,69 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"install",
|
|
||||||
"sfml_add_library"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-src/cmake/Macros.cmake",
|
|
||||||
"build/_deps/sfml-src/src/SFML/Window/CMakeLists.txt"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 269,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 232,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 256,
|
|
||||||
"parent" : 1
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"installers" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"component" : "devel",
|
|
||||||
"destination" : "lib",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/lib/libsfml-window-s-d.a"
|
|
||||||
],
|
|
||||||
"targetId" : "sfml-window::@5730451e331e3690ae65",
|
|
||||||
"targetIndex" : 11,
|
|
||||||
"type" : "target"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"component" : "devel",
|
|
||||||
"destination" : "lib/cmake/SFML",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-build/src/SFML/Window/SFMLWindowDependencies.cmake"
|
|
||||||
],
|
|
||||||
"type" : "file"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/Window",
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/Window"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-14
@@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" : [],
|
|
||||||
"files" : [],
|
|
||||||
"nodes" : []
|
|
||||||
},
|
|
||||||
"installers" : [],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/vorbis-build",
|
|
||||||
"source" : "build/_deps/vorbis-src"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-118
@@ -1,118 +0,0 @@
|
|||||||
{
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"install"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/vorbis-src/lib/CMakeLists.txt"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 117,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 129,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 145,
|
|
||||||
"parent" : 0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"installers" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/lib/libvorbisd.a"
|
|
||||||
],
|
|
||||||
"targetId" : "vorbis::@692b0ee2b61df6760d20",
|
|
||||||
"targetIndex" : 12,
|
|
||||||
"type" : "target"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/lib/libvorbisencd.a"
|
|
||||||
],
|
|
||||||
"targetId" : "vorbisenc::@692b0ee2b61df6760d20",
|
|
||||||
"targetIndex" : 13,
|
|
||||||
"type" : "target"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/sfml-build/lib/libvorbisfiled.a"
|
|
||||||
],
|
|
||||||
"targetId" : "vorbisfile::@692b0ee2b61df6760d20",
|
|
||||||
"targetIndex" : 14,
|
|
||||||
"type" : "target"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib/cmake/Vorbis",
|
|
||||||
"exportName" : "VorbisTargets",
|
|
||||||
"exportTargets" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"id" : "vorbis::@692b0ee2b61df6760d20",
|
|
||||||
"index" : 12
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id" : "vorbisenc::@692b0ee2b61df6760d20",
|
|
||||||
"index" : 13
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id" : "vorbisfile::@692b0ee2b61df6760d20",
|
|
||||||
"index" : 14
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"_deps/vorbis-build/lib/CMakeFiles/Export/cc38caa321284793c52f43683a3b76fc/VorbisTargets.cmake"
|
|
||||||
],
|
|
||||||
"type" : "export"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"component" : "Unspecified",
|
|
||||||
"destination" : "lib/cmake/Vorbis",
|
|
||||||
"paths" :
|
|
||||||
[
|
|
||||||
"build/_deps/vorbis-build/VorbisConfig.cmake",
|
|
||||||
"build/_deps/vorbis-build/VorbisConfigVersion.cmake"
|
|
||||||
],
|
|
||||||
"type" : "file"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/vorbis-build/lib",
|
|
||||||
"source" : "build/_deps/vorbis-src/lib"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,132 +0,0 @@
|
|||||||
{
|
|
||||||
"cmake" :
|
|
||||||
{
|
|
||||||
"generator" :
|
|
||||||
{
|
|
||||||
"multiConfig" : false,
|
|
||||||
"name" : "MinGW Makefiles"
|
|
||||||
},
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"cmake" : "C:/Program Files/CMake/bin/cmake.exe",
|
|
||||||
"cpack" : "C:/Program Files/CMake/bin/cpack.exe",
|
|
||||||
"ctest" : "C:/Program Files/CMake/bin/ctest.exe",
|
|
||||||
"root" : "C:/Program Files/CMake/share/cmake-3.31"
|
|
||||||
},
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"isDirty" : false,
|
|
||||||
"major" : 3,
|
|
||||||
"minor" : 31,
|
|
||||||
"patch" : 12,
|
|
||||||
"string" : "3.31.12",
|
|
||||||
"suffix" : ""
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"objects" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"jsonFile" : "codemodel-v2-290884aea50f77061a71.json",
|
|
||||||
"kind" : "codemodel",
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 2,
|
|
||||||
"minor" : 7
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"jsonFile" : "cache-v2-edb9fc9126dde21cf804.json",
|
|
||||||
"kind" : "cache",
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 2,
|
|
||||||
"minor" : 0
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"jsonFile" : "cmakeFiles-v1-a545836b6d7338214a70.json",
|
|
||||||
"kind" : "cmakeFiles",
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 1,
|
|
||||||
"minor" : 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"jsonFile" : "toolchains-v1-b98998d1392142ad84ed.json",
|
|
||||||
"kind" : "toolchains",
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 1,
|
|
||||||
"minor" : 0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"reply" :
|
|
||||||
{
|
|
||||||
"client-vscode" :
|
|
||||||
{
|
|
||||||
"query.json" :
|
|
||||||
{
|
|
||||||
"requests" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"kind" : "cache",
|
|
||||||
"version" : 2
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"kind" : "codemodel",
|
|
||||||
"version" : 2
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"kind" : "toolchains",
|
|
||||||
"version" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"kind" : "cmakeFiles",
|
|
||||||
"version" : 1
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"responses" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"jsonFile" : "cache-v2-edb9fc9126dde21cf804.json",
|
|
||||||
"kind" : "cache",
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 2,
|
|
||||||
"minor" : 0
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"jsonFile" : "codemodel-v2-290884aea50f77061a71.json",
|
|
||||||
"kind" : "codemodel",
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 2,
|
|
||||||
"minor" : 7
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"jsonFile" : "toolchains-v1-b98998d1392142ad84ed.json",
|
|
||||||
"kind" : "toolchains",
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 1,
|
|
||||||
"minor" : 0
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"jsonFile" : "cmakeFiles-v1-a545836b6d7338214a70.json",
|
|
||||||
"kind" : "cmakeFiles",
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 1,
|
|
||||||
"minor" : 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,678 +0,0 @@
|
|||||||
{
|
|
||||||
"archive" : {},
|
|
||||||
"artifacts" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"path" : "_deps/sfml-build/lib/libFLACd.a"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"backtrace" : 1,
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"add_library",
|
|
||||||
"install",
|
|
||||||
"target_link_libraries",
|
|
||||||
"add_compile_options",
|
|
||||||
"target_compile_options",
|
|
||||||
"target_compile_definitions",
|
|
||||||
"add_definitions",
|
|
||||||
"sfml_add_audio_dependencies",
|
|
||||||
"include",
|
|
||||||
"include_directories"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/flac-src/src/libFLAC/CMakeLists.txt",
|
|
||||||
"build/_deps/flac-src/CMakeLists.txt",
|
|
||||||
"build/_deps/sfml-src/src/SFML/Audio/CMakeLists.txt",
|
|
||||||
"build/_deps/flac-src/cmake/UseSystemExtensions.cmake"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 37,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 113,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 2,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 90,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"file" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 3,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 168,
|
|
||||||
"parent" : 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 4,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 107,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 5,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 79,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 198,
|
|
||||||
"parent" : 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 190,
|
|
||||||
"parent" : 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"file" : 2
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 7,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 159,
|
|
||||||
"parent" : 10
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 5,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 147,
|
|
||||||
"parent" : 11
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 8,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 107,
|
|
||||||
"parent" : 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"file" : 3,
|
|
||||||
"parent" : 13
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 3,
|
|
||||||
"line" : 54,
|
|
||||||
"parent" : 14
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 9,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 187,
|
|
||||||
"parent" : 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 9,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 189,
|
|
||||||
"parent" : 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 9,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 35,
|
|
||||||
"parent" : 0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"compileGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"compileCommandFragments" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"fragment" : "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wdeclaration-after-statement"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-fassociative-math"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-fno-signed-zeros"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-fno-trapping-math"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-freciprocal-math"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"defines" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"define" : "FLAC__NO_DLL"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"define" : "FLAC__OVERFLOW_DETECT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 9,
|
|
||||||
"define" : "HAVE_CONFIG_H"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 12,
|
|
||||||
"define" : "NDEBUG"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "_DARWIN_C_SOURCE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "_POSIX_PTHREAD_SEMANTICS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "_TANDEM_SOURCE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "__STDC_WANT_IEC_60559_BFP_EXT__"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "__STDC_WANT_IEC_60559_DFP_EXT__"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "__STDC_WANT_IEC_60559_FUNCS_EXT__"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "__STDC_WANT_IEC_60559_TYPES_EXT__"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "__STDC_WANT_LIB_EXT2__"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "__STDC_WANT_MATH_SPEC_FUNCS__"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"includes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 16,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/flac-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 17,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/flac-build"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 18,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/flac-src/src/libFLAC/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/ogg-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/ogg-build/include"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"language" : "C",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
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,
|
|
||||||
29,
|
|
||||||
31,
|
|
||||||
32,
|
|
||||||
33,
|
|
||||||
34,
|
|
||||||
35
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"defines" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"define" : "FLAC__NO_DLL"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"define" : "FLAC__OVERFLOW_DETECT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 9,
|
|
||||||
"define" : "HAVE_CONFIG_H"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 12,
|
|
||||||
"define" : "NDEBUG"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "_DARWIN_C_SOURCE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "_POSIX_PTHREAD_SEMANTICS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "_TANDEM_SOURCE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "__STDC_WANT_IEC_60559_BFP_EXT__"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "__STDC_WANT_IEC_60559_DFP_EXT__"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "__STDC_WANT_IEC_60559_FUNCS_EXT__"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "__STDC_WANT_IEC_60559_TYPES_EXT__"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "__STDC_WANT_LIB_EXT2__"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"define" : "__STDC_WANT_MATH_SPEC_FUNCS__"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"includes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 16,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/flac-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 17,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/flac-build"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 18,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/flac-src/src/libFLAC/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/ogg-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/ogg-build/include"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"language" : "RC",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
28
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dependencies" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"id" : "ogg::@4e5ed7d02827854e35f8"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"folder" :
|
|
||||||
{
|
|
||||||
"name" : "Dependencies"
|
|
||||||
},
|
|
||||||
"id" : "FLAC::@d572677c3819035d9b3d",
|
|
||||||
"install" :
|
|
||||||
{
|
|
||||||
"destinations" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "lib"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"prefix" :
|
|
||||||
{
|
|
||||||
"path" : "C:/Program Files (x86)/CMakeSFMLProject"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"name" : "FLAC",
|
|
||||||
"nameOnDisk" : "libFLACd.a",
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/flac-build/src/libFLAC",
|
|
||||||
"source" : "build/_deps/flac-src/src/libFLAC"
|
|
||||||
},
|
|
||||||
"sourceGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"name" : "Source Files",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
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,
|
|
||||||
31,
|
|
||||||
32,
|
|
||||||
33,
|
|
||||||
34,
|
|
||||||
35
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name" : "Header Files",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
30
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"sources" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/bitmath.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/bitreader.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/bitwriter.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/cpu.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/crc.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/fixed.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/fixed_intrin_sse2.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/fixed_intrin_ssse3.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/fixed_intrin_sse42.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/fixed_intrin_avx2.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/float.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/format.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/lpc.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/lpc_intrin_neon.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/lpc_intrin_sse2.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/lpc_intrin_sse41.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/lpc_intrin_avx2.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/lpc_intrin_fma.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/md5.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/memory.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/metadata_iterators.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/metadata_object.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/stream_decoder.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/stream_encoder.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/stream_encoder_intrin_sse2.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/stream_encoder_intrin_ssse3.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/stream_encoder_intrin_avx2.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/stream_encoder_framing.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 1,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/version.rc",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/window.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/flac-src/include/share/win_utf8_io.h",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/share/win_utf8_io/win_utf8_io.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/ogg_decoder_aspect.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/ogg_encoder_aspect.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/ogg_helper.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/src/libFLAC/ogg_mapping.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type" : "STATIC_LIBRARY"
|
|
||||||
}
|
|
||||||
@@ -1,298 +0,0 @@
|
|||||||
{
|
|
||||||
"artifacts" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"path" : "objs/benchmark_residual.exe"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path" : "objs/benchmark_residual.pdb"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"backtrace" : 1,
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"add_executable",
|
|
||||||
"target_link_libraries",
|
|
||||||
"add_compile_options",
|
|
||||||
"add_definitions",
|
|
||||||
"include",
|
|
||||||
"include_directories",
|
|
||||||
"target_include_directories"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/flac-src/microbench/CMakeLists.txt",
|
|
||||||
"build/_deps/flac-src/src/libFLAC/CMakeLists.txt",
|
|
||||||
"build/_deps/flac-src/CMakeLists.txt",
|
|
||||||
"build/_deps/flac-src/cmake/UseSystemExtensions.cmake"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 12,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 15,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"file" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 88,
|
|
||||||
"parent" : 3
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 90,
|
|
||||||
"parent" : 3
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"file" : 2
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 2,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 168,
|
|
||||||
"parent" : 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 3,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 198,
|
|
||||||
"parent" : 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 3,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 190,
|
|
||||||
"parent" : 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 4,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 107,
|
|
||||||
"parent" : 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"file" : 3,
|
|
||||||
"parent" : 10
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 3,
|
|
||||||
"file" : 3,
|
|
||||||
"line" : 54,
|
|
||||||
"parent" : 11
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 5,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 189,
|
|
||||||
"parent" : 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 13,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 5,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 187,
|
|
||||||
"parent" : 6
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"compileGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"compileCommandFragments" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"fragment" : "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wdeclaration-after-statement"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"defines" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"define" : "FLAC__NO_DLL"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"define" : "FLAC__OVERFLOW_DETECT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 9,
|
|
||||||
"define" : "HAVE_CONFIG_H"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 12,
|
|
||||||
"define" : "_DARWIN_C_SOURCE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 12,
|
|
||||||
"define" : "_POSIX_PTHREAD_SEMANTICS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 12,
|
|
||||||
"define" : "_TANDEM_SOURCE"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 12,
|
|
||||||
"define" : "__STDC_WANT_IEC_60559_BFP_EXT__"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 12,
|
|
||||||
"define" : "__STDC_WANT_IEC_60559_DFP_EXT__"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 12,
|
|
||||||
"define" : "__STDC_WANT_IEC_60559_FUNCS_EXT__"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 12,
|
|
||||||
"define" : "__STDC_WANT_IEC_60559_TYPES_EXT__"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 12,
|
|
||||||
"define" : "__STDC_WANT_LIB_EXT2__"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 12,
|
|
||||||
"define" : "__STDC_WANT_MATH_SPEC_FUNCS__"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"includes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 13,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/flac-build"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 14,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/flac-src/src/libFLAC/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/flac-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/ogg-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/ogg-build/include"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"language" : "C",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
1
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dependencies" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"id" : "ogg::@4e5ed7d02827854e35f8"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"id" : "FLAC::@d572677c3819035d9b3d"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"id" : "benchmark_residual::@3956ab943ce8cc4f6f98",
|
|
||||||
"link" :
|
|
||||||
{
|
|
||||||
"commandFragments" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"fragment" : "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g",
|
|
||||||
"role" : "flags"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fragment" : "",
|
|
||||||
"role" : "flags"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"fragment" : "..\\..\\sfml-build\\lib\\libFLACd.a",
|
|
||||||
"role" : "libraries"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"fragment" : "-lm",
|
|
||||||
"role" : "libraries"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "..\\..\\sfml-build\\lib\\liboggd.a",
|
|
||||||
"role" : "libraries"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32",
|
|
||||||
"role" : "libraries"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"language" : "C"
|
|
||||||
},
|
|
||||||
"name" : "benchmark_residual",
|
|
||||||
"nameOnDisk" : "benchmark_residual.exe",
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/flac-build/microbench",
|
|
||||||
"source" : "build/_deps/flac-src/microbench"
|
|
||||||
},
|
|
||||||
"sourceGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"name" : "Source Files",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
1
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"sources" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/microbench/benchmark_residual.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/flac-src/microbench/util.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type" : "EXECUTABLE"
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,289 +0,0 @@
|
|||||||
{
|
|
||||||
"artifacts" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"path" : "bin/mainV4.exe"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path" : "bin/mainV4.pdb"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"backtrace" : 1,
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"add_executable",
|
|
||||||
"target_link_libraries"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"CMakeLists.txt",
|
|
||||||
"build/_deps/sfml-src/src/SFML/Graphics/CMakeLists.txt",
|
|
||||||
"build/_deps/sfml-src/src/SFML/Window/CMakeLists.txt"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 29,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 31,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"file" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 93,
|
|
||||||
"parent" : 3
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"file" : 2
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 283,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 312,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 327,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 156,
|
|
||||||
"parent" : 3
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"compileGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"compileCommandFragments" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"fragment" : "-g"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"defines" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"define" : "SFML_STATIC"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"includes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/glm-src"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/include"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"language" : "CXX",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
1,
|
|
||||||
2,
|
|
||||||
3,
|
|
||||||
4,
|
|
||||||
5,
|
|
||||||
6,
|
|
||||||
7,
|
|
||||||
8
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dependencies" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"id" : "sfml-system::@8cb1db2982443611e568"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"id" : "sfml-graphics::@98af38147d5fa7e70f61"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"id" : "sfml-window::@5730451e331e3690ae65"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"id" : "freetype::@d06f9f5ffc3cc0b4bd77"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"id" : "glm::@ce54d98d7b326a3e12a8"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"id" : "mainV4::@6890427a1f51a3e7e1df",
|
|
||||||
"link" :
|
|
||||||
{
|
|
||||||
"commandFragments" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"fragment" : "-g",
|
|
||||||
"role" : "flags"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fragment" : "",
|
|
||||||
"role" : "flags"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"fragment" : "_deps\\sfml-build\\lib\\libsfml-graphics-s-d.a",
|
|
||||||
"role" : "libraries"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"fragment" : "_deps\\glm-build\\glm\\libglm.a",
|
|
||||||
"role" : "libraries"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"fragment" : "_deps\\sfml-build\\lib\\libsfml-window-s-d.a",
|
|
||||||
"role" : "libraries"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "_deps\\sfml-build\\lib\\libsfml-system-s-d.a",
|
|
||||||
"role" : "libraries"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-lopengl32",
|
|
||||||
"role" : "libraries"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"fragment" : "-lwinmm",
|
|
||||||
"role" : "libraries"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"fragment" : "-lgdi32",
|
|
||||||
"role" : "libraries"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 9,
|
|
||||||
"fragment" : "_deps\\sfml-build\\lib\\libfreetyped.a",
|
|
||||||
"role" : "libraries"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32",
|
|
||||||
"role" : "libraries"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"language" : "CXX"
|
|
||||||
},
|
|
||||||
"name" : "mainV4",
|
|
||||||
"nameOnDisk" : "mainV4.exe",
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : ".",
|
|
||||||
"source" : "."
|
|
||||||
},
|
|
||||||
"sourceGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"name" : "Source Files",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
1,
|
|
||||||
2,
|
|
||||||
3,
|
|
||||||
4,
|
|
||||||
5,
|
|
||||||
6,
|
|
||||||
7,
|
|
||||||
8
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"sources" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "src/testMain.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "src/csv/methods/csv_class.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "src/joints/methods/pivot_joint_class.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "src/joints/methods/rigid_joint_class.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "src/pieces/methods/caviglia_class.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "src/pieces/methods/coscia_class.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "src/pieces/methods/sensore_class.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "src/pieces/methods/torso.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "src/rigidbody/methods/rb_class.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type" : "EXECUTABLE"
|
|
||||||
}
|
|
||||||
@@ -1,158 +0,0 @@
|
|||||||
{
|
|
||||||
"archive" : {},
|
|
||||||
"artifacts" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"path" : "_deps/sfml-build/lib/liboggd.a"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"backtrace" : 1,
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"add_library",
|
|
||||||
"install",
|
|
||||||
"target_include_directories"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/ogg-src/CMakeLists.txt"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 93,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 122,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 2,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 95,
|
|
||||||
"parent" : 0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"compileGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"compileCommandFragments" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"fragment" : "-g"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"includes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/ogg-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/ogg-build/include"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"language" : "C",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
3,
|
|
||||||
4
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"folder" :
|
|
||||||
{
|
|
||||||
"name" : "Dependencies"
|
|
||||||
},
|
|
||||||
"id" : "ogg::@4e5ed7d02827854e35f8",
|
|
||||||
"install" :
|
|
||||||
{
|
|
||||||
"destinations" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "lib"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"prefix" :
|
|
||||||
{
|
|
||||||
"path" : "C:/Program Files (x86)/CMakeSFMLProject"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"name" : "ogg",
|
|
||||||
"nameOnDisk" : "liboggd.a",
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/ogg-build",
|
|
||||||
"source" : "build/_deps/ogg-src"
|
|
||||||
},
|
|
||||||
"sourceGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"name" : "Header Files",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
1,
|
|
||||||
2,
|
|
||||||
5
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name" : "Source Files",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
3,
|
|
||||||
4
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"sources" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/ogg-build/include/ogg/config_types.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/ogg-src/include/ogg/ogg.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/ogg-src/include/ogg/os_types.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/ogg-src/src/bitwise.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/ogg-src/src/framing.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/ogg-src/src/crctable.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type" : "STATIC_LIBRARY"
|
|
||||||
}
|
|
||||||
@@ -1,744 +0,0 @@
|
|||||||
{
|
|
||||||
"archive" : {},
|
|
||||||
"artifacts" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"path" : "_deps/sfml-build/lib/libsfml-audio-s-d.a"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"backtrace" : 2,
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"add_library",
|
|
||||||
"sfml_add_library",
|
|
||||||
"install",
|
|
||||||
"target_link_libraries",
|
|
||||||
"target_compile_options",
|
|
||||||
"set_target_warnings",
|
|
||||||
"target_compile_definitions",
|
|
||||||
"target_include_directories"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-src/cmake/Macros.cmake",
|
|
||||||
"build/_deps/sfml-src/src/SFML/Audio/CMakeLists.txt",
|
|
||||||
"build/_deps/sfml-src/cmake/CompilerWarnings.cmake"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 165,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 72,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 2,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 232,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 3,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 182,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 5,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 85,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 4,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 43,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 4,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 68,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 170,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 173,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 176,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 179,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 274,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 85,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 86,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 7,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 262,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 7,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 190,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 7,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 193,
|
|
||||||
"parent" : 0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"compileGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"compileCommandFragments" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"fragment" : "-g -fvisibility=hidden -fno-keep-inline-dllexport"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wall"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wextra"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wshadow"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wnon-virtual-dtor"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wcast-align"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wunused"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Woverloaded-virtual"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wconversion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wsign-conversion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wdouble-promotion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wformat=2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wimplicit-fallthrough"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wsuggest-override"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wnull-dereference"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wold-style-cast"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wpedantic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wmisleading-indentation"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wduplicated-cond"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wlogical-op"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wduplicated-branches"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"defines" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"define" : "FLAC__NO_DLL"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 9,
|
|
||||||
"define" : "MA_NO_ENCODING"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 9,
|
|
||||||
"define" : "MA_NO_FLAC"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 9,
|
|
||||||
"define" : "MA_NO_GENERATION"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 9,
|
|
||||||
"define" : "MA_NO_MP3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 9,
|
|
||||||
"define" : "MA_NO_RESOURCE_MANAGER"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 10,
|
|
||||||
"define" : "MA_USE_STDINT"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"define" : "OV_EXCLUDE_STATIC_CALLBACKS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 11,
|
|
||||||
"define" : "SFML_IS_BIG_ENDIAN=0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 12,
|
|
||||||
"define" : "SFML_STATIC"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 13,
|
|
||||||
"define" : "_CRT_SECURE_NO_WARNINGS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 14,
|
|
||||||
"define" : "_WINSOCK_DEPRECATED_NO_WARNINGS"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"includes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/src"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 16,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/extlibs/headers/miniaudio"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 17,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/extlibs/headers/minimp3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/vorbis-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/ogg-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/ogg-build/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/flac-src/include"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"language" : "CXX",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
2,
|
|
||||||
5,
|
|
||||||
7,
|
|
||||||
9,
|
|
||||||
10,
|
|
||||||
12,
|
|
||||||
14,
|
|
||||||
16,
|
|
||||||
18,
|
|
||||||
21,
|
|
||||||
23,
|
|
||||||
25,
|
|
||||||
27,
|
|
||||||
29,
|
|
||||||
31,
|
|
||||||
36,
|
|
||||||
38,
|
|
||||||
40,
|
|
||||||
42,
|
|
||||||
45,
|
|
||||||
47,
|
|
||||||
49
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dependencies" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"id" : "sfml-system::@8cb1db2982443611e568"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"id" : "ogg::@4e5ed7d02827854e35f8"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"id" : "FLAC::@d572677c3819035d9b3d"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"id" : "vorbis::@692b0ee2b61df6760d20"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"id" : "vorbisenc::@692b0ee2b61df6760d20"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"id" : "vorbisfile::@692b0ee2b61df6760d20"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"folder" :
|
|
||||||
{
|
|
||||||
"name" : "SFML"
|
|
||||||
},
|
|
||||||
"id" : "sfml-audio::@a153e5727587c53fce98",
|
|
||||||
"install" :
|
|
||||||
{
|
|
||||||
"destinations" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"path" : "lib"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"prefix" :
|
|
||||||
{
|
|
||||||
"path" : "C:/Program Files (x86)/CMakeSFMLProject"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"name" : "sfml-audio",
|
|
||||||
"nameOnDisk" : "libsfml-audio-s-d.a",
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/Audio",
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/Audio"
|
|
||||||
},
|
|
||||||
"sourceGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"name" : "",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
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
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name" : "codecs",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
31,
|
|
||||||
32,
|
|
||||||
33,
|
|
||||||
34,
|
|
||||||
35,
|
|
||||||
36,
|
|
||||||
37,
|
|
||||||
38,
|
|
||||||
39,
|
|
||||||
40,
|
|
||||||
41,
|
|
||||||
42,
|
|
||||||
43,
|
|
||||||
44,
|
|
||||||
45,
|
|
||||||
46,
|
|
||||||
47,
|
|
||||||
48,
|
|
||||||
49
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"sources" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/AudioResource.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/AudioResource.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/AudioDevice.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/AudioDevice.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/Export.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/Listener.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/Listener.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/Miniaudio.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/MiniaudioUtils.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/MiniaudioUtils.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/Music.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/Music.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/PlaybackDevice.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/PlaybackDevice.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/Sound.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/Sound.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundBuffer.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/SoundBuffer.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundBufferRecorder.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/SoundBufferRecorder.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/SoundChannel.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/InputSoundFile.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/InputSoundFile.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/OutputSoundFile.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/OutputSoundFile.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundRecorder.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/SoundRecorder.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundSource.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/SoundSource.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundStream.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/SoundStream.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundFileFactory.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/SoundFileFactory.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/SoundFileFactory.inl",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/SoundFileReader.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundFileReaderFlac.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundFileReaderFlac.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundFileReaderMp3.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundFileReaderMp3.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundFileReaderOgg.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundFileReaderOgg.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundFileReaderWav.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundFileReaderWav.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Audio/SoundFileWriter.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundFileWriterFlac.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundFileWriterFlac.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundFileWriterOgg.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundFileWriterOgg.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundFileWriterWav.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Audio/SoundFileWriterWav.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type" : "STATIC_LIBRARY"
|
|
||||||
}
|
|
||||||
@@ -1,940 +0,0 @@
|
|||||||
{
|
|
||||||
"archive" : {},
|
|
||||||
"artifacts" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"path" : "_deps/sfml-build/lib/libsfml-graphics-s-d.a"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"backtrace" : 2,
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"add_library",
|
|
||||||
"sfml_add_library",
|
|
||||||
"install",
|
|
||||||
"target_link_libraries",
|
|
||||||
"target_compile_options",
|
|
||||||
"set_target_warnings",
|
|
||||||
"target_compile_definitions",
|
|
||||||
"target_include_directories"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-src/cmake/Macros.cmake",
|
|
||||||
"build/_deps/sfml-src/src/SFML/Graphics/CMakeLists.txt",
|
|
||||||
"build/_deps/sfml-src/cmake/CompilerWarnings.cmake"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 88,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 72,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 2,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 232,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 3,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 93,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 3,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 156,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 5,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 85,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 4,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 43,
|
|
||||||
"parent" : 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 4,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 68,
|
|
||||||
"parent" : 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 274,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 159,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 85,
|
|
||||||
"parent" : 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 86,
|
|
||||||
"parent" : 6
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 7,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 262,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 7,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 96,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 7,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 99,
|
|
||||||
"parent" : 0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"compileGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"compileCommandFragments" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"fragment" : "-g -fvisibility=hidden -fno-keep-inline-dllexport"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wall"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wextra"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wshadow"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wnon-virtual-dtor"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wcast-align"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wunused"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Woverloaded-virtual"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wconversion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wsign-conversion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wdouble-promotion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wformat=2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wimplicit-fallthrough"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wsuggest-override"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wnull-dereference"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wold-style-cast"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wpedantic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"fragment" : "-Wmisleading-indentation"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"fragment" : "-Wduplicated-cond"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"fragment" : "-Wlogical-op"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"fragment" : "-Wduplicated-branches"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"defines" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 9,
|
|
||||||
"define" : "SFML_STATIC"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 10,
|
|
||||||
"define" : "STBI_FAILURE_USERMSG"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 11,
|
|
||||||
"define" : "_CRT_SECURE_NO_WARNINGS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 12,
|
|
||||||
"define" : "_WINSOCK_DEPRECATED_NO_WARNINGS"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"includes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 13,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/src"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 13,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 14,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/extlibs/headers/stb_image"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/extlibs/headers/glad/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/freetype-build/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/freetype-src/include"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"language" : "CXX",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
6,
|
|
||||||
8,
|
|
||||||
12,
|
|
||||||
15,
|
|
||||||
21,
|
|
||||||
23,
|
|
||||||
25,
|
|
||||||
27,
|
|
||||||
29,
|
|
||||||
31,
|
|
||||||
33,
|
|
||||||
35,
|
|
||||||
37,
|
|
||||||
40,
|
|
||||||
42,
|
|
||||||
46,
|
|
||||||
48,
|
|
||||||
50,
|
|
||||||
52,
|
|
||||||
54,
|
|
||||||
56,
|
|
||||||
58,
|
|
||||||
60,
|
|
||||||
63,
|
|
||||||
65
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"compileCommandFragments" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"fragment" : "-g -fvisibility=hidden -fno-keep-inline-dllexport"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wall"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wextra"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wshadow"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wnon-virtual-dtor"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wcast-align"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wunused"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Woverloaded-virtual"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wconversion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wsign-conversion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wdouble-promotion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wformat=2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wimplicit-fallthrough"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wsuggest-override"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wnull-dereference"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wold-style-cast"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wpedantic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"fragment" : "-Wmisleading-indentation"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"fragment" : "-Wduplicated-cond"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"fragment" : "-Wlogical-op"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"fragment" : "-Wduplicated-branches"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fragment" : "-fno-strict-aliasing"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"defines" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 9,
|
|
||||||
"define" : "SFML_STATIC"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 10,
|
|
||||||
"define" : "STBI_FAILURE_USERMSG"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 11,
|
|
||||||
"define" : "_CRT_SECURE_NO_WARNINGS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 12,
|
|
||||||
"define" : "_WINSOCK_DEPRECATED_NO_WARNINGS"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"includes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 13,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/src"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 13,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 14,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/extlibs/headers/stb_image"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 15,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/extlibs/headers/glad/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/freetype-build/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/freetype-src/include"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"language" : "CXX",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
16
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dependencies" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"id" : "sfml-system::@8cb1db2982443611e568"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"id" : "sfml-window::@5730451e331e3690ae65"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"id" : "freetype::@d06f9f5ffc3cc0b4bd77"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"folder" :
|
|
||||||
{
|
|
||||||
"name" : "SFML"
|
|
||||||
},
|
|
||||||
"id" : "sfml-graphics::@98af38147d5fa7e70f61",
|
|
||||||
"install" :
|
|
||||||
{
|
|
||||||
"destinations" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"path" : "lib"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"prefix" :
|
|
||||||
{
|
|
||||||
"path" : "C:/Program Files (x86)/CMakeSFMLProject"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"name" : "sfml-graphics",
|
|
||||||
"nameOnDisk" : "libsfml-graphics-s-d.a",
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/Graphics",
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/Graphics"
|
|
||||||
},
|
|
||||||
"sourceGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"name" : "",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
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
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name" : "drawables",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
45,
|
|
||||||
46,
|
|
||||||
47,
|
|
||||||
48,
|
|
||||||
49,
|
|
||||||
50,
|
|
||||||
51,
|
|
||||||
52,
|
|
||||||
53,
|
|
||||||
54,
|
|
||||||
55,
|
|
||||||
56,
|
|
||||||
57,
|
|
||||||
58,
|
|
||||||
59,
|
|
||||||
60,
|
|
||||||
61
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name" : "render texture",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
62,
|
|
||||||
63,
|
|
||||||
64,
|
|
||||||
65,
|
|
||||||
66
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"sources" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/BlendMode.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/BlendMode.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Color.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Color.inl",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/CoordinateType.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Export.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/Font.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Font.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/Glsl.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Glsl.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Glsl.inl",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Glyph.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/GLCheck.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/GLCheck.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/GLExtensions.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/GLExtensions.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 1,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/Image.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Image.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/PrimitiveType.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Rect.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Rect.inl",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/RenderStates.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/RenderStates.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/RenderTexture.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/RenderTexture.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/RenderTarget.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/RenderTarget.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/RenderWindow.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/RenderWindow.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/Shader.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Shader.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/StencilMode.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/StencilMode.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/Texture.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Texture.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/TextureSaver.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/TextureSaver.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/Transform.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Transform.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Transform.inl",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/Transformable.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Transformable.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/View.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/View.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Vertex.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Drawable.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/Shape.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Shape.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/CircleShape.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/CircleShape.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/RectangleShape.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/RectangleShape.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/ConvexShape.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/ConvexShape.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/Sprite.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Sprite.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/Text.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/Text.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/VertexArray.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/VertexArray.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/VertexBuffer.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Graphics/VertexBuffer.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/RenderTextureImpl.hpp",
|
|
||||||
"sourceGroupIndex" : 2
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/RenderTextureImplFBO.cpp",
|
|
||||||
"sourceGroupIndex" : 2
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/RenderTextureImplFBO.hpp",
|
|
||||||
"sourceGroupIndex" : 2
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/RenderTextureImplDefault.cpp",
|
|
||||||
"sourceGroupIndex" : 2
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Graphics/RenderTextureImplDefault.hpp",
|
|
||||||
"sourceGroupIndex" : 2
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type" : "STATIC_LIBRARY"
|
|
||||||
}
|
|
||||||
@@ -1,263 +0,0 @@
|
|||||||
{
|
|
||||||
"archive" : {},
|
|
||||||
"artifacts" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"path" : "_deps/sfml-build/lib/libsfml-main-s-d.a"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"backtrace" : 2,
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"add_library",
|
|
||||||
"sfml_add_library",
|
|
||||||
"install",
|
|
||||||
"target_compile_options",
|
|
||||||
"set_target_warnings",
|
|
||||||
"target_compile_definitions",
|
|
||||||
"target_include_directories"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-src/cmake/Macros.cmake",
|
|
||||||
"build/_deps/sfml-src/src/SFML/Main/CMakeLists.txt",
|
|
||||||
"build/_deps/sfml-src/cmake/CompilerWarnings.cmake"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 16,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 70,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 2,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 232,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 4,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 85,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 3,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 43,
|
|
||||||
"parent" : 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 3,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 68,
|
|
||||||
"parent" : 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 5,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 274,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 5,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 85,
|
|
||||||
"parent" : 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 5,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 86,
|
|
||||||
"parent" : 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 262,
|
|
||||||
"parent" : 1
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"compileGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"compileCommandFragments" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"fragment" : "-g -fvisibility=hidden -fno-keep-inline-dllexport"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wall"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wextra"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wshadow"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wnon-virtual-dtor"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wcast-align"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wunused"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Woverloaded-virtual"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wconversion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wsign-conversion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wdouble-promotion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wformat=2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wimplicit-fallthrough"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wsuggest-override"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wnull-dereference"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wold-style-cast"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wpedantic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wmisleading-indentation"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wduplicated-cond"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wlogical-op"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wduplicated-branches"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"defines" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"define" : "SFML_STATIC"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"define" : "_CRT_SECURE_NO_WARNINGS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 9,
|
|
||||||
"define" : "_WINSOCK_DEPRECATED_NO_WARNINGS"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"includes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 10,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 10,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/src"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"language" : "CXX",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"folder" :
|
|
||||||
{
|
|
||||||
"name" : "SFML"
|
|
||||||
},
|
|
||||||
"id" : "sfml-main::@81ec5539f1398dd625f6",
|
|
||||||
"install" :
|
|
||||||
{
|
|
||||||
"destinations" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"path" : "lib"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"prefix" :
|
|
||||||
{
|
|
||||||
"path" : "C:/Program Files (x86)/CMakeSFMLProject"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"name" : "sfml-main",
|
|
||||||
"nameOnDisk" : "libsfml-main-s-d.a",
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/Main",
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/Main"
|
|
||||||
},
|
|
||||||
"sourceGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"name" : "Source Files",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"sources" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Main/MainWin32.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type" : "STATIC_LIBRARY"
|
|
||||||
}
|
|
||||||
@@ -1,422 +0,0 @@
|
|||||||
{
|
|
||||||
"archive" : {},
|
|
||||||
"artifacts" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"path" : "_deps/sfml-build/lib/libsfml-network-s-d.a"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"backtrace" : 2,
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"add_library",
|
|
||||||
"sfml_add_library",
|
|
||||||
"install",
|
|
||||||
"target_link_libraries",
|
|
||||||
"target_compile_options",
|
|
||||||
"set_target_warnings",
|
|
||||||
"target_compile_definitions",
|
|
||||||
"target_include_directories"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-src/cmake/Macros.cmake",
|
|
||||||
"build/_deps/sfml-src/src/SFML/Network/CMakeLists.txt",
|
|
||||||
"build/_deps/sfml-src/cmake/CompilerWarnings.cmake"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 43,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 72,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 2,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 232,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 3,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 47,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 5,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 85,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 4,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 43,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 4,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 68,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 274,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 85,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 86,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 7,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 262,
|
|
||||||
"parent" : 1
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"compileGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"compileCommandFragments" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"fragment" : "-g -fvisibility=hidden -fno-keep-inline-dllexport"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wall"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wextra"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wshadow"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wnon-virtual-dtor"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wcast-align"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wunused"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Woverloaded-virtual"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wconversion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wsign-conversion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wdouble-promotion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wformat=2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wimplicit-fallthrough"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wsuggest-override"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wnull-dereference"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wold-style-cast"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wpedantic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wmisleading-indentation"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wduplicated-cond"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wlogical-op"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wduplicated-branches"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"defines" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"define" : "SFML_STATIC"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 9,
|
|
||||||
"define" : "_CRT_SECURE_NO_WARNINGS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 10,
|
|
||||||
"define" : "_WINSOCK_DEPRECATED_NO_WARNINGS"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"includes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 11,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/src"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 11,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/include"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"language" : "CXX",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
1,
|
|
||||||
3,
|
|
||||||
5,
|
|
||||||
7,
|
|
||||||
9,
|
|
||||||
13,
|
|
||||||
15,
|
|
||||||
17,
|
|
||||||
19,
|
|
||||||
21
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dependencies" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"id" : "sfml-system::@8cb1db2982443611e568"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"folder" :
|
|
||||||
{
|
|
||||||
"name" : "SFML"
|
|
||||||
},
|
|
||||||
"id" : "sfml-network::@d7f79968b2699e7782cb",
|
|
||||||
"install" :
|
|
||||||
{
|
|
||||||
"destinations" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"path" : "lib"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"prefix" :
|
|
||||||
{
|
|
||||||
"path" : "C:/Program Files (x86)/CMakeSFMLProject"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"name" : "sfml-network",
|
|
||||||
"nameOnDisk" : "libsfml-network-s-d.a",
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/Network",
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/Network"
|
|
||||||
},
|
|
||||||
"sourceGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"name" : "",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
1,
|
|
||||||
2,
|
|
||||||
3,
|
|
||||||
4,
|
|
||||||
5,
|
|
||||||
6,
|
|
||||||
7,
|
|
||||||
8,
|
|
||||||
9,
|
|
||||||
10,
|
|
||||||
11,
|
|
||||||
12,
|
|
||||||
13,
|
|
||||||
14,
|
|
||||||
15,
|
|
||||||
16,
|
|
||||||
17,
|
|
||||||
18,
|
|
||||||
19,
|
|
||||||
20,
|
|
||||||
21
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"sources" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Network/Export.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Network/Ftp.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Network/Ftp.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Network/Http.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Network/Http.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Network/IpAddress.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Network/IpAddress.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Network/Packet.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Network/Packet.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Network/Socket.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Network/Socket.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Network/SocketImpl.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Network/SocketHandle.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Network/SocketSelector.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Network/SocketSelector.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Network/TcpListener.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Network/TcpListener.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Network/TcpSocket.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Network/TcpSocket.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Network/UdpSocket.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Network/UdpSocket.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Network/Win32/SocketImpl.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type" : "STATIC_LIBRARY"
|
|
||||||
}
|
|
||||||
@@ -1,491 +0,0 @@
|
|||||||
{
|
|
||||||
"archive" : {},
|
|
||||||
"artifacts" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"path" : "_deps/sfml-build/lib/libsfml-system-s-d.a"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"backtrace" : 2,
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"add_library",
|
|
||||||
"sfml_add_library",
|
|
||||||
"install",
|
|
||||||
"target_compile_options",
|
|
||||||
"set_target_warnings",
|
|
||||||
"target_compile_definitions",
|
|
||||||
"target_include_directories"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-src/cmake/Macros.cmake",
|
|
||||||
"build/_deps/sfml-src/src/SFML/System/CMakeLists.txt",
|
|
||||||
"build/_deps/sfml-src/cmake/CompilerWarnings.cmake"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 72,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 72,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 2,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 232,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 4,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 85,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 3,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 43,
|
|
||||||
"parent" : 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 3,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 68,
|
|
||||||
"parent" : 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 5,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 274,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 5,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 85,
|
|
||||||
"parent" : 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 5,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 86,
|
|
||||||
"parent" : 4
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 262,
|
|
||||||
"parent" : 1
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"compileGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"compileCommandFragments" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"fragment" : "-g -fvisibility=hidden -fno-keep-inline-dllexport"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wall"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wextra"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wshadow"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wnon-virtual-dtor"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wcast-align"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wunused"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Woverloaded-virtual"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wconversion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wsign-conversion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wdouble-promotion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wformat=2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wimplicit-fallthrough"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wsuggest-override"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wnull-dereference"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wold-style-cast"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 5,
|
|
||||||
"fragment" : "-Wpedantic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wmisleading-indentation"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wduplicated-cond"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wlogical-op"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wduplicated-branches"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"defines" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"define" : "SFML_STATIC"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"define" : "_CRT_SECURE_NO_WARNINGS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 9,
|
|
||||||
"define" : "_WINSOCK_DEPRECATED_NO_WARNINGS"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"includes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 10,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 10,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/src"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"language" : "CXX",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
2,
|
|
||||||
5,
|
|
||||||
11,
|
|
||||||
13,
|
|
||||||
21,
|
|
||||||
22,
|
|
||||||
25,
|
|
||||||
28,
|
|
||||||
30,
|
|
||||||
33
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"folder" :
|
|
||||||
{
|
|
||||||
"name" : "SFML"
|
|
||||||
},
|
|
||||||
"id" : "sfml-system::@8cb1db2982443611e568",
|
|
||||||
"install" :
|
|
||||||
{
|
|
||||||
"destinations" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"path" : "lib"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"prefix" :
|
|
||||||
{
|
|
||||||
"path" : "C:/Program Files (x86)/CMakeSFMLProject"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"name" : "sfml-system",
|
|
||||||
"nameOnDisk" : "libsfml-system-s-d.a",
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/System",
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/System"
|
|
||||||
},
|
|
||||||
"sourceGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"name" : "",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
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
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name" : "windows",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
33,
|
|
||||||
34
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"sources" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/Angle.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/Angle.inl",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/System/Clock.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/Clock.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/System/EnumArray.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/System/Err.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/Err.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/Exception.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/Export.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/InputStream.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/NativeActivity.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/System/Sleep.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/Sleep.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/System/String.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/String.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/String.inl",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/Time.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/Time.inl",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/Utf.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/Utf.inl",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/System/Utils.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/System/Utils.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/System/Vector2.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/Vector2.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/Vector2.inl",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/System/Vector3.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/Vector3.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/Vector3.inl",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/System/FileInputStream.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/FileInputStream.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/System/MemoryInputStream.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/MemoryInputStream.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/System/SuspendAwareClock.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/System/Win32/SleepImpl.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/System/Win32/SleepImpl.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type" : "STATIC_LIBRARY"
|
|
||||||
}
|
|
||||||
@@ -1,734 +0,0 @@
|
|||||||
{
|
|
||||||
"archive" : {},
|
|
||||||
"artifacts" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"path" : "_deps/sfml-build/lib/libsfml-window-s-d.a"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"backtrace" : 2,
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"add_library",
|
|
||||||
"sfml_add_library",
|
|
||||||
"install",
|
|
||||||
"target_link_libraries",
|
|
||||||
"target_compile_options",
|
|
||||||
"set_target_warnings",
|
|
||||||
"target_compile_definitions",
|
|
||||||
"target_include_directories"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/sfml-src/cmake/Macros.cmake",
|
|
||||||
"build/_deps/sfml-src/src/SFML/Window/CMakeLists.txt",
|
|
||||||
"build/_deps/sfml-src/cmake/CompilerWarnings.cmake"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 269,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 72,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 2,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 232,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 3,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 283,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 5,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 85,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 4,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 43,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 4,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 68,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 274,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 85,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 6,
|
|
||||||
"file" : 2,
|
|
||||||
"line" : 86,
|
|
||||||
"parent" : 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 7,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 262,
|
|
||||||
"parent" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 7,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 286,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 7,
|
|
||||||
"file" : 1,
|
|
||||||
"line" : 295,
|
|
||||||
"parent" : 0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"compileGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"compileCommandFragments" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"fragment" : "-g -fvisibility=hidden -fno-keep-inline-dllexport"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wall"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wextra"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wshadow"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wnon-virtual-dtor"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wcast-align"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wunused"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Woverloaded-virtual"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wconversion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wsign-conversion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wdouble-promotion"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wformat=2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wimplicit-fallthrough"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wsuggest-override"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wnull-dereference"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wold-style-cast"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"fragment" : "-Wpedantic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wmisleading-indentation"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wduplicated-cond"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wlogical-op"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 7,
|
|
||||||
"fragment" : "-Wduplicated-branches"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"defines" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 8,
|
|
||||||
"define" : "SFML_STATIC"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 9,
|
|
||||||
"define" : "_CRT_SECURE_NO_WARNINGS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 10,
|
|
||||||
"define" : "_WINSOCK_DEPRECATED_NO_WARNINGS"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"includes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 11,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/src"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 11,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 12,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/extlibs/headers/glad/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 13,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/sfml-src/extlibs/headers/vulkan"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"language" : "CXX",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
1,
|
|
||||||
3,
|
|
||||||
5,
|
|
||||||
9,
|
|
||||||
11,
|
|
||||||
18,
|
|
||||||
20,
|
|
||||||
23,
|
|
||||||
25,
|
|
||||||
27,
|
|
||||||
29,
|
|
||||||
31,
|
|
||||||
33,
|
|
||||||
36,
|
|
||||||
39,
|
|
||||||
41,
|
|
||||||
46,
|
|
||||||
49,
|
|
||||||
51,
|
|
||||||
52,
|
|
||||||
53,
|
|
||||||
56,
|
|
||||||
58,
|
|
||||||
59,
|
|
||||||
60,
|
|
||||||
62
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dependencies" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"id" : "sfml-system::@8cb1db2982443611e568"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"folder" :
|
|
||||||
{
|
|
||||||
"name" : "SFML"
|
|
||||||
},
|
|
||||||
"id" : "sfml-window::@5730451e331e3690ae65",
|
|
||||||
"install" :
|
|
||||||
{
|
|
||||||
"destinations" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"path" : "lib"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"prefix" :
|
|
||||||
{
|
|
||||||
"path" : "C:/Program Files (x86)/CMakeSFMLProject"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"name" : "sfml-window",
|
|
||||||
"nameOnDisk" : "libsfml-window-s-d.a",
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/sfml-build/src/SFML/Window",
|
|
||||||
"source" : "build/_deps/sfml-src/src/SFML/Window"
|
|
||||||
},
|
|
||||||
"sourceGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"name" : "",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
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
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name" : "windows",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
48,
|
|
||||||
49,
|
|
||||||
50,
|
|
||||||
51,
|
|
||||||
52,
|
|
||||||
53,
|
|
||||||
54,
|
|
||||||
55,
|
|
||||||
56,
|
|
||||||
57,
|
|
||||||
58,
|
|
||||||
59,
|
|
||||||
60,
|
|
||||||
61,
|
|
||||||
62,
|
|
||||||
63
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"sources" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/Clipboard.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Clipboard.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/ClipboardImpl.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Context.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/Context.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Cursor.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/Cursor.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/CursorImpl.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/Export.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/GlContext.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/GlContext.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/GlResource.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/GlResource.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/ContextSettings.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/Event.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/Event.inl",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/InputImpl.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/Joystick.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Joystick.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/JoystickImpl.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/JoystickManager.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/JoystickManager.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/Keyboard.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Keyboard.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/Mouse.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Mouse.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/Touch.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Touch.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/Sensor.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Sensor.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/SensorImpl.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/SensorManager.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/SensorManager.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/VideoMode.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/VideoMode.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/VideoModeImpl.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Vulkan.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/Vulkan.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/VulkanImpl.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Window.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/Window.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/WindowBase.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/WindowBase.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/WindowBase.inl",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/WindowEnums.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/include/SFML/Window/WindowHandle.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/WindowImpl.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/WindowImpl.hpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Win32/CursorImpl.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Win32/CursorImpl.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Win32/ClipboardImpl.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Win32/ClipboardImpl.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Win32/InputImpl.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Win32/JoystickImpl.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Win32/JoystickImpl.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Win32/SensorImpl.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Win32/SensorImpl.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Win32/Utils.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Win32/VideoModeImpl.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Win32/VulkanImplWin32.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Win32/WindowImplWin32.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Win32/WindowImplWin32.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Win32/WglContext.cpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "build/_deps/sfml-src/src/SFML/Window/Win32/WglContext.hpp",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type" : "STATIC_LIBRARY"
|
|
||||||
}
|
|
||||||
@@ -1,430 +0,0 @@
|
|||||||
{
|
|
||||||
"archive" : {},
|
|
||||||
"artifacts" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"path" : "_deps/sfml-build/lib/libvorbisd.a"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"backtrace" : 1,
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"add_library",
|
|
||||||
"install",
|
|
||||||
"target_link_libraries",
|
|
||||||
"target_include_directories"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/vorbis-src/lib/CMakeLists.txt"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 77,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 117,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 2,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 108,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 3,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 88,
|
|
||||||
"parent" : 0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"compileGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"compileCommandFragments" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"fragment" : "-g"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"includes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/vorbis-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/vorbis-src/lib"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/ogg-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/ogg-build/include"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"language" : "C",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
19,
|
|
||||||
20,
|
|
||||||
21,
|
|
||||||
22,
|
|
||||||
23,
|
|
||||||
24,
|
|
||||||
25,
|
|
||||||
26,
|
|
||||||
27,
|
|
||||||
28,
|
|
||||||
29,
|
|
||||||
30,
|
|
||||||
31,
|
|
||||||
32,
|
|
||||||
33,
|
|
||||||
34,
|
|
||||||
35,
|
|
||||||
36,
|
|
||||||
37,
|
|
||||||
38,
|
|
||||||
39
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dependencies" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"id" : "ogg::@4e5ed7d02827854e35f8"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"folder" :
|
|
||||||
{
|
|
||||||
"name" : "Dependencies"
|
|
||||||
},
|
|
||||||
"id" : "vorbis::@692b0ee2b61df6760d20",
|
|
||||||
"install" :
|
|
||||||
{
|
|
||||||
"destinations" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "lib"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"prefix" :
|
|
||||||
{
|
|
||||||
"path" : "C:/Program Files (x86)/CMakeSFMLProject"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"name" : "vorbis",
|
|
||||||
"nameOnDisk" : "libvorbisd.a",
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/vorbis-build/lib",
|
|
||||||
"source" : "build/_deps/vorbis-src/lib"
|
|
||||||
},
|
|
||||||
"sourceGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"name" : "Header Files",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
1,
|
|
||||||
2,
|
|
||||||
3,
|
|
||||||
4,
|
|
||||||
5,
|
|
||||||
6,
|
|
||||||
7,
|
|
||||||
8,
|
|
||||||
9,
|
|
||||||
10,
|
|
||||||
11,
|
|
||||||
12,
|
|
||||||
13,
|
|
||||||
14,
|
|
||||||
15,
|
|
||||||
16,
|
|
||||||
17,
|
|
||||||
18
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name" : "Source Files",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
19,
|
|
||||||
20,
|
|
||||||
21,
|
|
||||||
22,
|
|
||||||
23,
|
|
||||||
24,
|
|
||||||
25,
|
|
||||||
26,
|
|
||||||
27,
|
|
||||||
28,
|
|
||||||
29,
|
|
||||||
30,
|
|
||||||
31,
|
|
||||||
32,
|
|
||||||
33,
|
|
||||||
34,
|
|
||||||
35,
|
|
||||||
36,
|
|
||||||
37,
|
|
||||||
38,
|
|
||||||
39,
|
|
||||||
40
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"sources" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/envelope.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/lpc.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/lsp.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/codebook.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/misc.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/psy.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/masking.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/os.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/mdct.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/smallft.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/highlevel.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/registry.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/scales.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/window.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/lookup.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/lookup_data.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/codec_internal.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/backends.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/bitrate.h",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/mdct.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/smallft.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/block.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/envelope.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/window.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/lsp.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/lpc.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/analysis.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/synthesis.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/psy.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/info.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/floor1.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/floor0.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/res0.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/mapping0.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/registry.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/codebook.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/sharedbook.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/lookup.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/bitrate.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/vorbisenc.c",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/win32/vorbis.def",
|
|
||||||
"sourceGroupIndex" : 1
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type" : "STATIC_LIBRARY"
|
|
||||||
}
|
|
||||||
@@ -1,155 +0,0 @@
|
|||||||
{
|
|
||||||
"archive" : {},
|
|
||||||
"artifacts" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"path" : "_deps/sfml-build/lib/libvorbisencd.a"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"backtrace" : 1,
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"add_library",
|
|
||||||
"install",
|
|
||||||
"target_link_libraries",
|
|
||||||
"target_include_directories"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/vorbis-src/lib/CMakeLists.txt"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 78,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 117,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 2,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 112,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 3,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 95,
|
|
||||||
"parent" : 0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"compileGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"compileCommandFragments" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"fragment" : "-g"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"includes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/vorbis-src/lib"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/vorbis-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/ogg-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/ogg-build/include"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"language" : "C",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dependencies" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"id" : "ogg::@4e5ed7d02827854e35f8"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"id" : "vorbis::@692b0ee2b61df6760d20"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"folder" :
|
|
||||||
{
|
|
||||||
"name" : "Dependencies"
|
|
||||||
},
|
|
||||||
"id" : "vorbisenc::@692b0ee2b61df6760d20",
|
|
||||||
"install" :
|
|
||||||
{
|
|
||||||
"destinations" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "lib"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"prefix" :
|
|
||||||
{
|
|
||||||
"path" : "C:/Program Files (x86)/CMakeSFMLProject"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"name" : "vorbisenc",
|
|
||||||
"nameOnDisk" : "libvorbisencd.a",
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/vorbis-build/lib",
|
|
||||||
"source" : "build/_deps/vorbis-src/lib"
|
|
||||||
},
|
|
||||||
"sourceGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"name" : "Source Files",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
1
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"sources" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/vorbisenc.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/win32/vorbisenc.def",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type" : "STATIC_LIBRARY"
|
|
||||||
}
|
|
||||||
@@ -1,151 +0,0 @@
|
|||||||
{
|
|
||||||
"archive" : {},
|
|
||||||
"artifacts" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"path" : "_deps/sfml-build/lib/libvorbisfiled.a"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"backtrace" : 1,
|
|
||||||
"backtraceGraph" :
|
|
||||||
{
|
|
||||||
"commands" :
|
|
||||||
[
|
|
||||||
"add_library",
|
|
||||||
"install",
|
|
||||||
"target_link_libraries",
|
|
||||||
"target_include_directories"
|
|
||||||
],
|
|
||||||
"files" :
|
|
||||||
[
|
|
||||||
"build/_deps/vorbis-src/lib/CMakeLists.txt"
|
|
||||||
],
|
|
||||||
"nodes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"file" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 0,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 79,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 117,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 2,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 113,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 3,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 102,
|
|
||||||
"parent" : 0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"compileGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"compileCommandFragments" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"fragment" : "-g"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"includes" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/vorbis-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/ogg-src/include"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"isSystem" : true,
|
|
||||||
"path" : "C:/Users/Tommy/Documents/UNIGE/ProgettoFinale/FCG_VisualizzatoreCamminata/build/_deps/ogg-build/include"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"language" : "C",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dependencies" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"id" : "ogg::@4e5ed7d02827854e35f8"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"id" : "vorbis::@692b0ee2b61df6760d20"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"folder" :
|
|
||||||
{
|
|
||||||
"name" : "Dependencies"
|
|
||||||
},
|
|
||||||
"id" : "vorbisfile::@692b0ee2b61df6760d20",
|
|
||||||
"install" :
|
|
||||||
{
|
|
||||||
"destinations" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 2,
|
|
||||||
"path" : "lib"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"prefix" :
|
|
||||||
{
|
|
||||||
"path" : "C:/Program Files (x86)/CMakeSFMLProject"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"name" : "vorbisfile",
|
|
||||||
"nameOnDisk" : "libvorbisfiled.a",
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "_deps/vorbis-build/lib",
|
|
||||||
"source" : "build/_deps/vorbis-src/lib"
|
|
||||||
},
|
|
||||||
"sourceGroups" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"name" : "Source Files",
|
|
||||||
"sourceIndexes" :
|
|
||||||
[
|
|
||||||
0,
|
|
||||||
1
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"sources" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "build/_deps/vorbis-src/lib/vorbisfile.c",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"path" : "build/_deps/vorbis-src/win32/vorbisfile.def",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"type" : "STATIC_LIBRARY"
|
|
||||||
}
|
|
||||||
@@ -1,98 +0,0 @@
|
|||||||
{
|
|
||||||
"kind" : "toolchains",
|
|
||||||
"toolchains" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"compiler" :
|
|
||||||
{
|
|
||||||
"implicit" : {},
|
|
||||||
"path" : "C:/msys64/ucrt64/bin/gcc.exe"
|
|
||||||
},
|
|
||||||
"language" : "C"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"compiler" :
|
|
||||||
{
|
|
||||||
"id" : "GNU",
|
|
||||||
"implicit" :
|
|
||||||
{
|
|
||||||
"includeDirectories" :
|
|
||||||
[
|
|
||||||
"C:/msys64/ucrt64/include/c++/15.2.0",
|
|
||||||
"C:/msys64/ucrt64/include/c++/15.2.0/x86_64-w64-mingw32",
|
|
||||||
"C:/msys64/ucrt64/include/c++/15.2.0/backward",
|
|
||||||
"C:/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.2.0/include",
|
|
||||||
"C:/msys64/ucrt64/include",
|
|
||||||
"C:/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.2.0/include-fixed"
|
|
||||||
],
|
|
||||||
"linkDirectories" :
|
|
||||||
[
|
|
||||||
"C:/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.2.0",
|
|
||||||
"C:/msys64/ucrt64/lib/gcc",
|
|
||||||
"C:/msys64/ucrt64/x86_64-w64-mingw32/lib",
|
|
||||||
"C:/msys64/ucrt64/lib"
|
|
||||||
],
|
|
||||||
"linkFrameworkDirectories" : [],
|
|
||||||
"linkLibraries" :
|
|
||||||
[
|
|
||||||
"stdc++",
|
|
||||||
"mingw32",
|
|
||||||
"gcc_s",
|
|
||||||
"gcc",
|
|
||||||
"mingwex",
|
|
||||||
"kernel32",
|
|
||||||
"pthread",
|
|
||||||
"advapi32",
|
|
||||||
"shell32",
|
|
||||||
"user32",
|
|
||||||
"kernel32",
|
|
||||||
"mingw32",
|
|
||||||
"gcc_s",
|
|
||||||
"gcc",
|
|
||||||
"mingwex",
|
|
||||||
"kernel32"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"path" : "C:/msys64/ucrt64/bin/g++.exe",
|
|
||||||
"version" : "15.2.0"
|
|
||||||
},
|
|
||||||
"language" : "CXX",
|
|
||||||
"sourceFileExtensions" :
|
|
||||||
[
|
|
||||||
"C",
|
|
||||||
"M",
|
|
||||||
"c++",
|
|
||||||
"cc",
|
|
||||||
"cpp",
|
|
||||||
"cxx",
|
|
||||||
"m",
|
|
||||||
"mm",
|
|
||||||
"mpp",
|
|
||||||
"CPP",
|
|
||||||
"ixx",
|
|
||||||
"cppm",
|
|
||||||
"ccm",
|
|
||||||
"cxxm",
|
|
||||||
"c++m"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"compiler" :
|
|
||||||
{
|
|
||||||
"implicit" : {},
|
|
||||||
"path" : "C:/msys64/ucrt64/bin/windres.exe"
|
|
||||||
},
|
|
||||||
"language" : "RC",
|
|
||||||
"sourceFileExtensions" :
|
|
||||||
[
|
|
||||||
"rc",
|
|
||||||
"RC"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 1,
|
|
||||||
"minor" : 0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
[Window][Debug##Default]
|
||||||
|
Pos=60,60
|
||||||
|
Size=400,400
|
||||||
|
|
||||||
|
[Window][Dear ImGui Demo]
|
||||||
|
Pos=781,47
|
||||||
|
Size=455,873
|
||||||
|
|
||||||
|
[Window][Hello, world!]
|
||||||
|
Pos=11,12
|
||||||
|
Size=212,56
|
||||||
|
|
||||||
|
[Window][Dear ImGui Demo/##Basket_87771727]
|
||||||
|
IsChild=1
|
||||||
|
Size=478,260
|
||||||
|
|
||||||
|
[Window][Dear ImGui Demo/##Basket_529977C1]
|
||||||
|
IsChild=1
|
||||||
|
Size=478,260
|
||||||
|
|
||||||
|
[Window][Example: Custom rendering]
|
||||||
|
Pos=68,96
|
||||||
|
Size=740,472
|
||||||
|
|
||||||
|
[Window][Set data position]
|
||||||
|
Pos=0,670
|
||||||
|
Size=800,30
|
||||||
|
|
||||||
|
[Window][Dear ImGui Demo/ResizableChild_478B81A3]
|
||||||
|
IsChild=1
|
||||||
|
Size=499,136
|
||||||
|
|
||||||
|
[Window][Dear ImGui Demo/Red_BEEF922B]
|
||||||
|
IsChild=1
|
||||||
|
Size=200,100
|
||||||
|
|
||||||
|
[Window][Dear ImGui Style Editor]
|
||||||
|
Pos=60,60
|
||||||
|
Size=353,1005
|
||||||
|
|
||||||
|
[Window][Set visualization plane]
|
||||||
|
Pos=400,0
|
||||||
|
Size=400,30
|
||||||
|
|
||||||
Executable
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
Binary file not shown.
Executable
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
+16516
File diff suppressed because it is too large
Load Diff
Executable → Regular
|
Can't render this file because it is too large.
|
+16515
File diff suppressed because it is too large
Load Diff
Executable → Regular
|
Can't render this file because it is too large.
|
@@ -0,0 +1,41 @@
|
|||||||
|
#include "../../pieces/headers/piece_interface.hpp"
|
||||||
|
#include "../../joints/headers/joint_interface.hpp"
|
||||||
|
|
||||||
|
#ifndef COLL_INTERFACE_H
|
||||||
|
#define COLL_INTERFACE_H
|
||||||
|
|
||||||
|
struct collection{
|
||||||
|
std::vector<PieceInterface*> pieces;
|
||||||
|
std::vector<JointInterface*> joints;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
class CollectionInterface{
|
||||||
|
public:
|
||||||
|
virtual collection create(ReferencePlane plane) = 0;
|
||||||
|
virtual bool setTransparency(float alpha) = 0;
|
||||||
|
virtual ~CollectionInterface(){};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
inline collection operator+(collection c1, collection c2){
|
||||||
|
collection res;
|
||||||
|
for (PieceInterface* i : c1.pieces){
|
||||||
|
res.pieces.push_back(i);
|
||||||
|
}
|
||||||
|
for (PieceInterface* i : c2.pieces){
|
||||||
|
res.pieces.push_back(i);
|
||||||
|
}
|
||||||
|
for (JointInterface* i : c1.joints){
|
||||||
|
res.joints.push_back(i);
|
||||||
|
}
|
||||||
|
for (JointInterface* i : c2.joints){
|
||||||
|
res.joints.push_back(i);
|
||||||
|
}
|
||||||
|
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
#include "collection_interface.hpp"
|
||||||
|
#include "include_pieces.hpp"
|
||||||
|
|
||||||
|
#ifndef GAMBA_H
|
||||||
|
#define GAMBA_H
|
||||||
|
|
||||||
|
class Gamba : public CollectionInterface {
|
||||||
|
protected:
|
||||||
|
std::vector<PieceInterface*> sensori;
|
||||||
|
std::vector<PieceInterface*> pezzi;
|
||||||
|
std::vector<JointInterface*> joints;
|
||||||
|
public:
|
||||||
|
Gamba(rb::Vector3 pos, unsigned int* dataPos, std::string cosciaData, std::string cavigliaData);
|
||||||
|
collection create(ReferencePlane plane) override;
|
||||||
|
PieceInterface* getJointPiece();
|
||||||
|
void setDirection(Direction dir);
|
||||||
|
bool setTransparency(float alpha) override;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
#include "../../csv/headers/csv.hpp"
|
||||||
|
#include "../../pieces/headers/caviglia.hpp"
|
||||||
|
#include "../../pieces/headers/coscia.hpp"
|
||||||
|
#include "../../pieces/headers/sensore.hpp"
|
||||||
|
#include "../../joints/headers/rigid_joint.hpp"
|
||||||
|
#include "../../joints/headers/pivot_joint.hpp"
|
||||||
|
#include "../../pieces/headers/torso.hpp"
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
#include "gamba.hpp"
|
||||||
|
#include "collection_interface.hpp"
|
||||||
|
|
||||||
|
#ifndef LOWER_BODY_H
|
||||||
|
#define LOWER_BODY_H
|
||||||
|
|
||||||
|
struct gamba_data{
|
||||||
|
unsigned int* dataPos;
|
||||||
|
std::string cosciaData;
|
||||||
|
std::string cavigliaData;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
class Lower_Body : public CollectionInterface{
|
||||||
|
protected:
|
||||||
|
Gamba* sx;
|
||||||
|
Gamba* dx;
|
||||||
|
Torso* t;
|
||||||
|
|
||||||
|
PivotJoint* jsx;
|
||||||
|
PivotJoint* jdx;
|
||||||
|
|
||||||
|
bool visible = true;
|
||||||
|
float alpha = 1;
|
||||||
|
|
||||||
|
public:
|
||||||
|
Lower_Body(rb::Vector3 pos, std::vector<gamba_data> data);
|
||||||
|
~Lower_Body();
|
||||||
|
|
||||||
|
void setVisibility(bool c);
|
||||||
|
bool setTransparency(float alpha) override;
|
||||||
|
collection create(ReferencePlane plane) override;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
#include "../headers/gamba.hpp"
|
||||||
|
|
||||||
|
Gamba::Gamba(rb::Vector3 pos, unsigned int* dataPos, std::string cosciaData, std::string cavigliaData){
|
||||||
|
CSVProcessor processor;
|
||||||
|
try {
|
||||||
|
pezzi.push_back(new Coscia(pos,2));
|
||||||
|
pezzi.push_back(new Caviglia(rb::Vector3{pos[0],pos[1],pos[2]+200},2));
|
||||||
|
|
||||||
|
processor.readCSVFile (DATA_PATH + cosciaData);
|
||||||
|
const auto& coscia = processor.getData();
|
||||||
|
sensori.push_back(new Sensore(pos,_Float16( 0.2 ),dataPos,coscia));
|
||||||
|
|
||||||
|
processor.readCSVFile(DATA_PATH + cavigliaData);
|
||||||
|
const auto& caviglia = processor.getData();
|
||||||
|
sensori.push_back(new Sensore (rb::Vector3{pos[0],pos[1],pos[2]+200},_Float16( 0.2 ),dataPos,caviglia));
|
||||||
|
|
||||||
|
// modifico la rotazione relativa della gamba
|
||||||
|
sensori[0]->body.setRot({_Float16 (1.5708),_Float16 (1.5708),0});
|
||||||
|
sensori[1]->body.setRot({_Float16 (1.5708),_Float16 (1.5708),0});
|
||||||
|
|
||||||
|
joints.push_back(new RigidJoint(sensori[0], {pezzi[0]}));
|
||||||
|
joints.push_back(new PivotJoint(sensori[0], {sensori[1]}, rb::Vector3{0,0,100}));
|
||||||
|
joints.push_back(new RigidJoint(sensori[1], {pezzi[1]}));
|
||||||
|
|
||||||
|
}
|
||||||
|
catch(char* e){
|
||||||
|
throw "Gamba ERROR : "+ std::string(e) +" \n" ;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
collection Gamba::create(ReferencePlane plane){
|
||||||
|
collection coll;
|
||||||
|
for(auto e : pezzi){
|
||||||
|
coll.pieces.push_back(e);
|
||||||
|
}
|
||||||
|
for(auto e : sensori){
|
||||||
|
coll.pieces.push_back(e);
|
||||||
|
}
|
||||||
|
|
||||||
|
for(auto j : joints){
|
||||||
|
coll.joints.push_back(j);
|
||||||
|
}
|
||||||
|
|
||||||
|
return coll;
|
||||||
|
}
|
||||||
|
|
||||||
|
PieceInterface* Gamba::getJointPiece(){
|
||||||
|
return sensori[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
void Gamba::setDirection(Direction dir){
|
||||||
|
for (auto i : pezzi){
|
||||||
|
i->setDirection(dir);
|
||||||
|
}
|
||||||
|
for (auto i : sensori){
|
||||||
|
i->setDirection(dir);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool Gamba::setTransparency(float alpha){
|
||||||
|
for (auto i : pezzi){
|
||||||
|
if (!i->setTransparency(alpha)) return false;
|
||||||
|
}
|
||||||
|
for (auto i : sensori){
|
||||||
|
if (!i->setTransparency(alpha)) return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
@@ -0,0 +1,75 @@
|
|||||||
|
#include "../headers/lower_body.hpp"
|
||||||
|
|
||||||
|
Lower_Body::Lower_Body(rb::Vector3 pos,std::vector<gamba_data> data){
|
||||||
|
if (data.size() != 2) throw "Lower_Body_Error: data vector size must be 2";
|
||||||
|
|
||||||
|
sx = new Gamba({pos[0],pos[1]-60,pos[2]+150},data[0].dataPos,data[0].cosciaData,data[0].cavigliaData);
|
||||||
|
dx = new Gamba({pos[0],pos[1]+60,pos[2]+150},data[1].dataPos,data[1].cosciaData,data[1].cavigliaData);
|
||||||
|
t = new Torso({pos[0],pos[1],pos[2]},_Float16(3.0));
|
||||||
|
|
||||||
|
PieceInterface* psx = sx->getJointPiece();
|
||||||
|
PieceInterface* pdx = dx->getJointPiece();
|
||||||
|
|
||||||
|
jsx = new PivotJoint(t, {psx}, rb::Vector3{0,-60,50});
|
||||||
|
jdx = new PivotJoint(t, {pdx}, rb::Vector3{0,60,50});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
collection Lower_Body::create(ReferencePlane plane){
|
||||||
|
collection coll;
|
||||||
|
|
||||||
|
sx->setTransparency(1);
|
||||||
|
dx->setTransparency(1);
|
||||||
|
|
||||||
|
switch (plane)
|
||||||
|
{
|
||||||
|
case ReferencePlane::XZN:
|
||||||
|
dx->setTransparency(0.5);
|
||||||
|
dx->setDirection(Direction::L);
|
||||||
|
sx->setDirection(Direction::R);
|
||||||
|
coll = coll + dx->create(plane);
|
||||||
|
coll = coll + sx->create(plane);
|
||||||
|
break;
|
||||||
|
case ReferencePlane::XZ:
|
||||||
|
sx->setTransparency(0.5);
|
||||||
|
dx->setDirection(Direction::R);
|
||||||
|
sx->setDirection(Direction::L);
|
||||||
|
coll = coll + sx->create(plane);
|
||||||
|
coll = coll + dx->create(plane);
|
||||||
|
break;
|
||||||
|
case ReferencePlane::YZ:
|
||||||
|
sx->setDirection(Direction::R);
|
||||||
|
dx->setDirection(Direction::L);
|
||||||
|
coll = coll + dx->create(plane);
|
||||||
|
coll = coll + sx->create(plane);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
coll.pieces.push_back(t);
|
||||||
|
coll.joints.push_back(jsx);
|
||||||
|
coll.joints.push_back(jdx);
|
||||||
|
|
||||||
|
|
||||||
|
return coll;
|
||||||
|
}
|
||||||
|
|
||||||
|
Lower_Body::~Lower_Body(){
|
||||||
|
delete sx;
|
||||||
|
delete dx;
|
||||||
|
delete t;
|
||||||
|
delete jdx;
|
||||||
|
delete jsx;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Lower_Body::setVisibility(bool c){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
bool Lower_Body::setTransparency(float alpha){
|
||||||
|
if (!sx->setTransparency(alpha)) return false;
|
||||||
|
dx->setTransparency(alpha);
|
||||||
|
t->setTransparency(alpha);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
@@ -4,6 +4,11 @@
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
#ifndef CSV_H
|
||||||
|
#define CSV_H
|
||||||
|
|
||||||
|
#define DATA_PATH std::string("./../../data/")
|
||||||
|
|
||||||
class CSVProcessor {
|
class CSVProcessor {
|
||||||
private:
|
private:
|
||||||
std::vector<std::string> headers;
|
std::vector<std::string> headers;
|
||||||
@@ -18,3 +23,5 @@ public:
|
|||||||
const std::vector<std::vector<float>>& getData() const;
|
const std::vector<std::vector<float>>& getData() const;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -7,3 +7,5 @@
|
|||||||
#include "pieces/headers/torso.hpp"
|
#include "pieces/headers/torso.hpp"
|
||||||
#include "joints/headers/rigid_joint.hpp"
|
#include "joints/headers/rigid_joint.hpp"
|
||||||
#include "joints/headers/pivot_joint.hpp"
|
#include "joints/headers/pivot_joint.hpp"
|
||||||
|
#include "collections/headers/gamba.hpp"
|
||||||
|
#include "collections/headers/lower_body.hpp"
|
||||||
@@ -1,5 +1,8 @@
|
|||||||
#include "joint_interface.hpp"
|
#include "joint_interface.hpp"
|
||||||
|
|
||||||
|
#ifndef PIVOTJ_H
|
||||||
|
#define PIVOTJ_H
|
||||||
|
|
||||||
class PivotJoint : public JointInterface {
|
class PivotJoint : public JointInterface {
|
||||||
protected:
|
protected:
|
||||||
void rotate(unsigned int id) override;
|
void rotate(unsigned int id) override;
|
||||||
@@ -26,3 +29,5 @@ class PivotJoint : public JointInterface {
|
|||||||
PivotJoint(PieceInterface* father,std::vector<PieceInterface*> childs, rb::Vector3 pivotPoint);
|
PivotJoint(PieceInterface* father,std::vector<PieceInterface*> childs, rb::Vector3 pivotPoint);
|
||||||
~PivotJoint();
|
~PivotJoint();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -1,5 +1,7 @@
|
|||||||
#include "joint_interface.hpp"
|
#include "joint_interface.hpp"
|
||||||
|
|
||||||
|
#ifndef RIGIDJ_H
|
||||||
|
#define RIGIDJ_H
|
||||||
|
|
||||||
class RigidJoint : public JointInterface {
|
class RigidJoint : public JointInterface {
|
||||||
protected:
|
protected:
|
||||||
@@ -17,3 +19,5 @@ class RigidJoint : public JointInterface {
|
|||||||
RigidJoint(PieceInterface* father,std::vector<PieceInterface*> childs);
|
RigidJoint(PieceInterface* father,std::vector<PieceInterface*> childs);
|
||||||
~RigidJoint();
|
~RigidJoint();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -8,9 +8,14 @@
|
|||||||
|
|
||||||
|
|
||||||
enum class ReferencePlane {
|
enum class ReferencePlane {
|
||||||
XY,
|
XZ,
|
||||||
YZ,
|
YZ,
|
||||||
XZ
|
XZN
|
||||||
|
};
|
||||||
|
|
||||||
|
enum class Direction {
|
||||||
|
L,
|
||||||
|
R
|
||||||
};
|
};
|
||||||
|
|
||||||
//classi
|
//classi
|
||||||
@@ -25,16 +30,25 @@ class PieceInterface{
|
|||||||
shapeXZ->setFillColor(color);
|
shapeXZ->setFillColor(color);
|
||||||
shapeYZ->setFillColor(color);
|
shapeYZ->setFillColor(color);
|
||||||
}
|
}
|
||||||
|
Direction direction = Direction::L;
|
||||||
public:
|
public:
|
||||||
sf::Shape* shapeXZ, *shapeYZ;
|
sf::Shape* shapeXZ, *shapeYZ;
|
||||||
rb::Vector3 globalPos;
|
rb::Vector3 globalPos;
|
||||||
rb::rigidbody body;
|
rb::rigidbody body;
|
||||||
sf::Color color;
|
sf::Color color;
|
||||||
|
float transparency = 1.0; //canale alpha del pezzo
|
||||||
|
|
||||||
virtual void update(sf::Clock cl) = 0;
|
virtual void update(sf::Clock cl) = 0;
|
||||||
virtual sf::Shape* draw(ReferencePlane plane) = 0;
|
virtual sf::Shape* draw(ReferencePlane plane) = 0;
|
||||||
virtual ~PieceInterface(){}
|
virtual ~PieceInterface(){}
|
||||||
|
virtual void setDirection(Direction dir){
|
||||||
|
direction = dir;
|
||||||
|
}
|
||||||
|
virtual bool setTransparency(float alpha){
|
||||||
|
if (alpha < 0 || alpha > 1) return false;
|
||||||
|
transparency = alpha;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -14,12 +14,9 @@ class Sensore : public PieceInterface{
|
|||||||
std::vector<std::vector<float>> gData;
|
std::vector<std::vector<float>> gData;
|
||||||
std::vector<std::vector<float>> rotData;
|
std::vector<std::vector<float>> rotData;
|
||||||
std::vector<float> timeData;
|
std::vector<float> timeData;
|
||||||
rb::Vector3 stPos;
|
|
||||||
|
|
||||||
//in che punto sto controllando il segnale
|
//in che punto sto controllando il segnale
|
||||||
unsigned int dataPos;
|
unsigned int* dataPos;
|
||||||
unsigned int dataIntvl;
|
|
||||||
|
|
||||||
|
|
||||||
//funzioni ausiliarie
|
//funzioni ausiliarie
|
||||||
void calcRotWithG(unsigned int index);
|
void calcRotWithG(unsigned int index);
|
||||||
@@ -27,7 +24,7 @@ class Sensore : public PieceInterface{
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
Sensore(rb::Vector3 coords, _Float16 mass);
|
Sensore(rb::Vector3 coords, _Float16 mass);
|
||||||
Sensore(rb::Vector3 coords, _Float16 mass, unsigned int st, unsigned int dataIntvl, std::vector<std::vector<float>> data);
|
Sensore(rb::Vector3 coords, _Float16 mass, unsigned int* st, std::vector<std::vector<float>> data);
|
||||||
~Sensore();
|
~Sensore();
|
||||||
|
|
||||||
void update(sf::Clock cl) override;
|
void update(sf::Clock cl) override;
|
||||||
@@ -35,7 +32,8 @@ class Sensore : public PieceInterface{
|
|||||||
|
|
||||||
//funzioni specifiche
|
//funzioni specifiche
|
||||||
void initCSV(std::vector<std::vector<float>> data);
|
void initCSV(std::vector<std::vector<float>> data);
|
||||||
|
void setIntervall(int min, int max);
|
||||||
|
void setPos(int &pos);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
class Torso : public PieceInterface{
|
class Torso : public PieceInterface{
|
||||||
private:
|
private:
|
||||||
const sf::Vector3f torso_Dim = {100, 100, 250};
|
const sf::Vector3f torso_Dim = {100, 100, 150};
|
||||||
const sf::Color torso_Col = sf::Color::Red;
|
const sf::Color torso_Col = sf::Color::Red;
|
||||||
public:
|
public:
|
||||||
Torso(rb::Vector3 coords, _Float16 mass);
|
Torso(rb::Vector3 coords, _Float16 mass);
|
||||||
|
|||||||
@@ -26,12 +26,13 @@ sf::Shape* Caviglia::draw(ReferencePlane plane){
|
|||||||
|
|
||||||
switch (plane)
|
switch (plane)
|
||||||
{
|
{
|
||||||
case ReferencePlane::XZ:
|
case ReferencePlane::XZ : case ReferencePlane::XZN:
|
||||||
{
|
{
|
||||||
sf::Shape* shape = shapeXZ;
|
sf::Shape* shape = shapeXZ;
|
||||||
shape->setRotation(sf::Angle(sf::radians(tmpRot[1])));
|
shape->setRotation(sf::Angle(sf::radians(tmpRot[1])));
|
||||||
shape->setPosition({tmpPos[0]+globalPos[0],tmpPos[2]+globalPos[2]});
|
shape->setPosition({tmpPos[0]+globalPos[0],tmpPos[2]+globalPos[2]});
|
||||||
shape->setScale({1,cos(float(tmpRot[0]))});
|
shape->setScale({1,cos(float(tmpRot[0]))});
|
||||||
|
shape->setFillColor(color*sf::Color(255,255,255,transparency*255));
|
||||||
return shape;}
|
return shape;}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@@ -41,6 +42,7 @@ sf::Shape* Caviglia::draw(ReferencePlane plane){
|
|||||||
shape->setRotation(sf::Angle(sf::radians(tmpRot[0])));
|
shape->setRotation(sf::Angle(sf::radians(tmpRot[0])));
|
||||||
shape->setPosition({tmpPos[1]+globalPos[1],tmpPos[2]+globalPos[2]});
|
shape->setPosition({tmpPos[1]+globalPos[1],tmpPos[2]+globalPos[2]});
|
||||||
shape->setScale({1,cos(float(tmpRot[1]))});
|
shape->setScale({1,cos(float(tmpRot[1]))});
|
||||||
|
shape->setFillColor(color*sf::Color(255,255,255,transparency*255));
|
||||||
return shape;}
|
return shape;}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|||||||
@@ -25,17 +25,13 @@ sf::Shape* Coscia::draw(ReferencePlane plane){
|
|||||||
|
|
||||||
switch (plane)
|
switch (plane)
|
||||||
{
|
{
|
||||||
case ReferencePlane::XZ:
|
case ReferencePlane::XZ : case ReferencePlane::XZN:
|
||||||
{
|
{
|
||||||
sf::Shape* shape = shapeXZ;
|
sf::Shape* shape = shapeXZ;
|
||||||
shape->setRotation(sf::Angle(sf::radians(tmpRot[1])));
|
shape->setRotation(sf::Angle(sf::radians(tmpRot[1])));
|
||||||
shape->setPosition({tmpPos[0]+globalPos[0],tmpPos[2]+globalPos[2]});
|
shape->setPosition({tmpPos[0]+globalPos[0],tmpPos[2]+globalPos[2]});
|
||||||
|
|
||||||
//calcolo ridimensionamento dato da cos(x)-> questo per definire l'ancoraggio corretto del pivot
|
|
||||||
shape->setScale({1,cos(float(tmpRot[0]))});
|
shape->setScale({1,cos(float(tmpRot[0]))});
|
||||||
//shape->setScale({1,(0.5* cos(float(tmpRot[0]*2)))+0.5});
|
shape->setFillColor(color*sf::Color(255,255,255,transparency*255));
|
||||||
|
|
||||||
|
|
||||||
return shape;}
|
return shape;}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@@ -44,10 +40,8 @@ sf::Shape* Coscia::draw(ReferencePlane plane){
|
|||||||
sf::Shape* shape = shapeYZ;
|
sf::Shape* shape = shapeYZ;
|
||||||
shape->setRotation(sf::Angle(sf::radians(tmpRot[0])));
|
shape->setRotation(sf::Angle(sf::radians(tmpRot[0])));
|
||||||
shape->setPosition({tmpPos[1]+globalPos[1],tmpPos[2]+globalPos[2]});
|
shape->setPosition({tmpPos[1]+globalPos[1],tmpPos[2]+globalPos[2]});
|
||||||
|
shape->setFillColor(color*sf::Color(255,255,255,transparency*255));
|
||||||
//calcolo ridimensionamento dato da cos(x) -> questo per definire l'ancoraggio corretto del pivot
|
|
||||||
shape->setScale({1,cos(float(tmpRot[1]))});
|
shape->setScale({1,cos(float(tmpRot[1]))});
|
||||||
//shape->setScale({1,(0.5* cos(float(tmpRot[1]*2)))+0.5});
|
|
||||||
return shape;}
|
return shape;}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|||||||
@@ -9,9 +9,8 @@ Sensore::Sensore(rb::Vector3 coords, _Float16 mass){
|
|||||||
initialize_shapes(sensore_Dim);
|
initialize_shapes(sensore_Dim);
|
||||||
}
|
}
|
||||||
|
|
||||||
Sensore::Sensore(rb::Vector3 coords, _Float16 mass, unsigned int st, unsigned int dataIntvl, std::vector<std::vector<float>> data) : Sensore(coords, mass){
|
Sensore::Sensore(rb::Vector3 coords, _Float16 mass, unsigned int* st, std::vector<std::vector<float>> data) : Sensore(coords, mass){
|
||||||
dataPos = st;
|
dataPos = st;
|
||||||
this->dataIntvl = dataIntvl;
|
|
||||||
initCSV(data);
|
initCSV(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -33,8 +32,6 @@ void Sensore::initCSV(std::vector<std::vector<float>> data){
|
|||||||
std::vector<float> tmpA = {row[5],row[6],row[4]};
|
std::vector<float> tmpA = {row[5],row[6],row[4]};
|
||||||
std::vector<float> tmpG = {-row[8],-row[9],-row[7]};
|
std::vector<float> tmpG = {-row[8],-row[9],-row[7]};
|
||||||
|
|
||||||
/////// DA CAMBIARE QUI ///////////
|
|
||||||
|
|
||||||
|
|
||||||
rotData.push_back(tmpR);
|
rotData.push_back(tmpR);
|
||||||
accData.push_back(tmpA);
|
accData.push_back(tmpA);
|
||||||
@@ -44,18 +41,15 @@ void Sensore::initCSV(std::vector<std::vector<float>> data){
|
|||||||
|
|
||||||
|
|
||||||
void Sensore::update(sf::Clock cl){
|
void Sensore::update(sf::Clock cl){
|
||||||
// Aggiorno la posizione nei dati
|
|
||||||
int64_t currTime = cl.getElapsedTime().asMicroseconds() *100000;
|
|
||||||
if (timeData[dataPos] < currTime && dataIntvl - dataPos > 0) { //aggiorno solo se ho cambiato posizione
|
|
||||||
dataPos++;
|
|
||||||
|
|
||||||
//calcolo la posizione e velocità
|
//calcolo la posizione e velocità
|
||||||
calcRotWithG(dataPos);
|
if (*dataPos >= gData.size()) *dataPos = gData.size()-1;
|
||||||
|
|
||||||
|
calcRotWithG(*dataPos);
|
||||||
|
|
||||||
|
|
||||||
body.setAcc(rb::Vector3{accData[dataPos]});
|
body.setAcc(rb::Vector3{accData[*dataPos]});
|
||||||
body.step(cl);
|
body.step(cl);
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -66,11 +60,13 @@ sf::Shape* Sensore::draw(ReferencePlane plane){
|
|||||||
|
|
||||||
switch (plane)
|
switch (plane)
|
||||||
{
|
{
|
||||||
case ReferencePlane::XZ:
|
case ReferencePlane::XZ : case ReferencePlane::XZN:
|
||||||
{
|
{
|
||||||
|
|
||||||
sf::Shape* shape = shapeXZ;
|
sf::Shape* shape = shapeXZ;
|
||||||
shape->setRotation(sf::Angle(sf::radians(tmpRot[1])));
|
shape->setRotation(sf::Angle(sf::radians(tmpRot[1])));
|
||||||
shape->setPosition({tmpPos[0]+globalPos[0],tmpPos[2]+globalPos[2]});
|
shape->setPosition({tmpPos[0]+globalPos[0],tmpPos[2]+globalPos[2]});
|
||||||
|
shape->setFillColor(color*sf::Color(255,255,255,transparency*255));
|
||||||
return shape;}
|
return shape;}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@@ -79,6 +75,7 @@ sf::Shape* Sensore::draw(ReferencePlane plane){
|
|||||||
sf::Shape* shape = shapeYZ;
|
sf::Shape* shape = shapeYZ;
|
||||||
shape->setRotation(sf::Angle(sf::radians(tmpRot[0])));
|
shape->setRotation(sf::Angle(sf::radians(tmpRot[0])));
|
||||||
shape->setPosition({tmpPos[1]+globalPos[1],tmpPos[2]+globalPos[2]});
|
shape->setPosition({tmpPos[1]+globalPos[1],tmpPos[2]+globalPos[2]});
|
||||||
|
shape->setFillColor(color*sf::Color(255,255,255,transparency*255));
|
||||||
return shape;}
|
return shape;}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@@ -91,7 +88,7 @@ sf::Shape* Sensore::draw(ReferencePlane plane){
|
|||||||
|
|
||||||
|
|
||||||
void Sensore::calcRotWithG(unsigned int index){ // calcolo rotazione con valori della gravità
|
void Sensore::calcRotWithG(unsigned int index){ // calcolo rotazione con valori della gravità
|
||||||
|
int dir = direction == Direction::R ? -1 : 1;
|
||||||
std::vector<float> grav = gData[index];
|
std::vector<float> grav = gData[index];
|
||||||
float modG = sqrt(pow(grav[0],2)+pow(grav[1],2)+pow(grav[2],2));
|
float modG = sqrt(pow(grav[0],2)+pow(grav[1],2)+pow(grav[2],2));
|
||||||
|
|
||||||
@@ -101,16 +98,13 @@ void Sensore::calcRotWithG(unsigned int index){ // calcolo rotazione con valori
|
|||||||
float tmpSinY = -grav[1] / modG;
|
float tmpSinY = -grav[1] / modG;
|
||||||
float tmpSinZ = -grav[2] / modG;
|
float tmpSinZ = -grav[2] / modG;
|
||||||
|
|
||||||
float tmpAX = acos(tmpSinX);
|
float tmpAX = acos(dir*tmpSinX);
|
||||||
float tmpAY = acos(tmpSinY);
|
float tmpAY = acos(dir*tmpSinY);
|
||||||
float tmpAZ = acos(tmpSinZ);
|
float tmpAZ = acos(tmpSinZ);
|
||||||
|
|
||||||
body.setRot(rb::Vector3{tmpAY, tmpAX, tmpAZ });
|
body.setRot(rb::Vector3{tmpAY, tmpAX, tmpAZ });
|
||||||
|
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
void Sensore::calcRotWithConstraint(){
|
|
||||||
|
|
||||||
};*/
|
|
||||||
|
|
||||||
/////////////// cinematica inversa
|
/////////////// cinematica inversa
|
||||||
@@ -26,11 +26,12 @@ sf::Shape* Torso::draw(ReferencePlane plane){
|
|||||||
|
|
||||||
switch (plane)
|
switch (plane)
|
||||||
{
|
{
|
||||||
case ReferencePlane::XZ:
|
case ReferencePlane::XZ: case ReferencePlane::XZN:
|
||||||
{
|
{
|
||||||
sf::Shape* shape = shapeXZ;
|
sf::Shape* shape = shapeXZ;
|
||||||
shape->setRotation(sf::Angle(sf::radians(tmpRot[1])));
|
shape->setRotation(sf::Angle(sf::radians(tmpRot[1])));
|
||||||
shape->setPosition({tmpPos[0]+globalPos[0],tmpPos[2]+globalPos[2]});
|
shape->setPosition({tmpPos[0]+globalPos[0],tmpPos[2]+globalPos[2]});
|
||||||
|
shape->setFillColor(color*sf::Color(255,255,255,transparency*255));
|
||||||
return shape;}
|
return shape;}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@@ -39,6 +40,7 @@ sf::Shape* Torso::draw(ReferencePlane plane){
|
|||||||
sf::Shape* shape = shapeYZ;
|
sf::Shape* shape = shapeYZ;
|
||||||
shape->setRotation(sf::Angle(sf::radians(tmpRot[0])));
|
shape->setRotation(sf::Angle(sf::radians(tmpRot[0])));
|
||||||
shape->setPosition({tmpPos[1]+globalPos[1],tmpPos[2]+globalPos[2]});
|
shape->setPosition({tmpPos[1]+globalPos[1],tmpPos[2]+globalPos[2]});
|
||||||
|
shape->setFillColor(color*sf::Color(255,255,255,transparency*255));
|
||||||
return shape;}
|
return shape;}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|||||||
+202
-33
@@ -2,6 +2,9 @@
|
|||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include "pieces/headers/piece_interface.hpp"
|
#include "pieces/headers/piece_interface.hpp"
|
||||||
#include "joints/headers/joint_interface.hpp"
|
#include "joints/headers/joint_interface.hpp"
|
||||||
|
#include "collections/headers/collection_interface.hpp"
|
||||||
|
#include <imgui.h>
|
||||||
|
#include <imgui-SFML.h>
|
||||||
|
|
||||||
template <typename T1, typename T2>
|
template <typename T1, typename T2>
|
||||||
double dist(sf::Vector2<T1> p1, sf::Vector2<T2> p2)
|
double dist(sf::Vector2<T1> p1, sf::Vector2<T2> p2)
|
||||||
@@ -19,24 +22,50 @@ struct State
|
|||||||
int menubar_height = 50;
|
int menubar_height = 50;
|
||||||
std::vector<PieceInterface*> pieces;
|
std::vector<PieceInterface*> pieces;
|
||||||
std::vector<JointInterface*> joints;
|
std::vector<JointInterface*> joints;
|
||||||
|
std::vector<CollectionInterface*> collections;
|
||||||
|
|
||||||
|
std::vector<collection> createdColl;
|
||||||
|
|
||||||
sf::Vector2f cameraOffset = {0.,0.};
|
sf::Vector2f cameraOffset = {0.,0.};
|
||||||
|
|
||||||
sf::Clock clock;
|
sf::Clock clock;
|
||||||
ReferencePlane selectedPlane = ReferencePlane::XZ;
|
ReferencePlane selectedPlane = ReferencePlane::XZ;
|
||||||
|
|
||||||
int selected = -1;
|
PieceInterface* selected = nullptr;
|
||||||
|
|
||||||
bool rot_Piece = false;
|
bool rot_Piece = false;
|
||||||
bool drag_Piece = false;
|
bool drag_Piece = false;
|
||||||
bool drag = false;
|
bool drag = false;
|
||||||
sf::Vector2i mouse_pos;
|
sf::Vector2i mouse_pos;
|
||||||
|
|
||||||
State(unsigned w, unsigned h, std::string title)
|
/// per settare l'ntervallo di visualizzazione
|
||||||
|
unsigned int* pos ;
|
||||||
|
unsigned int* intervalMajLimit ;
|
||||||
|
unsigned int* intervalMinLimit ;
|
||||||
|
unsigned int maxEntries = 1000;
|
||||||
|
bool play = true;
|
||||||
|
|
||||||
|
State(unsigned w, unsigned h, std::string title, unsigned int* maj, unsigned int* min, unsigned int* pos)
|
||||||
{
|
{
|
||||||
window = sf::RenderWindow(sf::VideoMode({w, h}), title);
|
window = sf::RenderWindow(sf::VideoMode({w, h}), title);
|
||||||
|
if (ImGui::SFML::Init(window)); // L'if è solo per togliere il warning, va aggiustato gestendo le eccezioni
|
||||||
clock.restart();
|
clock.restart();
|
||||||
|
intervalMajLimit = maj;
|
||||||
|
intervalMinLimit = min;
|
||||||
|
this->pos = pos;
|
||||||
|
updateCollections();
|
||||||
}
|
}
|
||||||
void update();
|
void update();
|
||||||
|
void setIntervall(int n){
|
||||||
|
maxEntries = n;
|
||||||
|
}
|
||||||
|
|
||||||
|
void updateCollections(){
|
||||||
|
createdColl.clear();
|
||||||
|
for (auto c: collections){
|
||||||
|
createdColl.push_back(c->create(selectedPlane));
|
||||||
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
///
|
///
|
||||||
@@ -47,13 +76,31 @@ struct State
|
|||||||
|
|
||||||
void State::update(){
|
void State::update(){
|
||||||
|
|
||||||
|
/*
|
||||||
|
std::vector<PieceInterface*> collPieces;
|
||||||
|
std::vector<JointInterface*> collJoints;
|
||||||
|
*/
|
||||||
|
|
||||||
|
for (auto i : createdColl){
|
||||||
|
if (play){
|
||||||
|
for (auto j : i.pieces){
|
||||||
|
j->update(clock);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (auto j : i.joints){
|
||||||
|
j->movechild();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (play){
|
||||||
for(PieceInterface* p : pieces){
|
for(PieceInterface* p : pieces){
|
||||||
//p->update(clock);
|
p->update(clock);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
for(JointInterface* j : joints){
|
for(JointInterface* j : joints){
|
||||||
j->movechild();
|
j->movechild();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@@ -61,17 +108,17 @@ void State::update(){
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
/// Callback functions
|
/// Callback functions
|
||||||
void handle(const sf::Event::Closed &, State &gs)
|
void handle_close(State &gs)
|
||||||
{
|
{
|
||||||
gs.window.close();
|
gs.window.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
void handle(const sf::Event::TextEntered &textEnter, State &gs)
|
void handle_text(const sf::Event::TextEntered &textEnter, State &gs)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void handle(const sf::Event::KeyPressed &keyPressed, State &gs)
|
void handle_keyPressed(const sf::Event::KeyPressed &keyPressed, State &gs)
|
||||||
{
|
{
|
||||||
if (keyPressed.scancode == sf::Keyboard::Scancode::Space){
|
if (keyPressed.scancode == sf::Keyboard::Scancode::Space){
|
||||||
if (gs.selectedPlane == ReferencePlane::XZ)
|
if (gs.selectedPlane == ReferencePlane::XZ)
|
||||||
@@ -79,9 +126,11 @@ void handle(const sf::Event::KeyPressed &keyPressed, State &gs)
|
|||||||
else
|
else
|
||||||
gs.selectedPlane = ReferencePlane::XZ;
|
gs.selectedPlane = ReferencePlane::XZ;
|
||||||
}
|
}
|
||||||
|
gs.updateCollections();
|
||||||
}
|
}
|
||||||
|
|
||||||
void handle(const sf::Event::MouseMoved &mouseMoved, State &gs)
|
|
||||||
|
void handle_mouseMove(const sf::Event::MouseMoved &mouseMoved, State &gs)
|
||||||
{
|
{
|
||||||
sf::Vector2i offset = mouseMoved.position - gs.mouse_pos;
|
sf::Vector2i offset = mouseMoved.position - gs.mouse_pos;
|
||||||
gs.mouse_pos = mouseMoved.position;
|
gs.mouse_pos = mouseMoved.position;
|
||||||
@@ -106,30 +155,41 @@ void handle(const sf::Event::MouseMoved &mouseMoved, State &gs)
|
|||||||
for(PieceInterface* p : gs.pieces){
|
for(PieceInterface* p : gs.pieces){
|
||||||
p->globalPos = {p->globalPos[0] + (offset.x * px), p->globalPos[1]+ (offset.x * py),p->globalPos[2] + offset.y};
|
p->globalPos = {p->globalPos[0] + (offset.x * px), p->globalPos[1]+ (offset.x * py),p->globalPos[2] + offset.y};
|
||||||
}
|
}
|
||||||
|
for(collection c : gs.createdColl){
|
||||||
|
for(auto p : c.pieces){
|
||||||
|
p->globalPos = {p->globalPos[0] + (offset.x * px), p->globalPos[1]+ (offset.x * py),p->globalPos[2] + offset.y};
|
||||||
}
|
}
|
||||||
if (gs.selected != -1 && gs.drag_Piece){
|
|
||||||
rb::Vector3 tmp = gs.pieces[gs.selected]->body.getPos();
|
|
||||||
gs.pieces[gs.selected]->body.setPos({tmp[0]+ (offset.x * px),tmp[1]+ (offset.x * py),tmp[2]+offset.y});
|
|
||||||
}
|
}
|
||||||
if (gs.selected != -1 && gs.rot_Piece){
|
}
|
||||||
rb::Vector3 tmp = gs.pieces[gs.selected]->body.getRot();
|
|
||||||
|
#ifdef DEBUG_MODE
|
||||||
|
|
||||||
|
if (gs.selected != nullptr && gs.drag_Piece){
|
||||||
|
rb::Vector3 tmp = gs.selected->body.getPos();
|
||||||
|
gs.selected->body.setPos({tmp[0]+ (offset.x * px),tmp[1]+ (offset.x * py),tmp[2]+offset.y});
|
||||||
|
}
|
||||||
|
if (gs.selected != nullptr && gs.rot_Piece){
|
||||||
|
rb::Vector3 tmp = gs.selected->body.getRot();
|
||||||
|
|
||||||
float nrot = float(offset.x)/100;
|
float nrot = float(offset.x)/100;
|
||||||
gs.pieces[gs.selected]->body.setRot({tmp[0]+(nrot*py),tmp[1]+(nrot*px),tmp[2]});
|
gs.selected->body.setRot({tmp[0]+(nrot*py),tmp[1]+(nrot*px),tmp[2]});
|
||||||
|
|
||||||
//printf("Rotation : %f,%f,%f \n",gs.pieces[gs.selected]->body.getRot()[0],gs.pieces[gs.selected]->body.getRot()[1],gs.pieces[gs.selected]->body.getRot()[2]);
|
//printf("Rotation : %f,%f,%f \n",gs.pieces[gs.selected]->body.getRot()[0],gs.pieces[gs.selected]->body.getRot()[1],gs.pieces[gs.selected]->body.getRot()[2]);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void handle(const sf::Event::MouseButtonPressed &mouseBP, State &gs)
|
void handle_mousePressed(const sf::Event::MouseButtonPressed &mouseBP, State &gs)
|
||||||
{
|
{
|
||||||
gs.mouse_pos = mouseBP.position;
|
gs.mouse_pos = mouseBP.position;
|
||||||
if ( mouseBP.button == sf::Mouse::Button::Middle) gs.drag = true;
|
if ( mouseBP.button == sf::Mouse::Button::Middle) gs.drag = true;
|
||||||
|
|
||||||
|
#ifdef DEBUG_MODE
|
||||||
|
|
||||||
if ( mouseBP.button == sf::Mouse::Button::Left){
|
if ( mouseBP.button == sf::Mouse::Button::Left){
|
||||||
gs.drag_Piece = true;
|
gs.drag_Piece = true;
|
||||||
int i = 0;
|
|
||||||
for (PieceInterface* p : gs.pieces){
|
for (PieceInterface* p : gs.pieces){
|
||||||
sf::Vector2f pos;
|
sf::Vector2f pos;
|
||||||
if (gs.selectedPlane == ReferencePlane::XZ)
|
if (gs.selectedPlane == ReferencePlane::XZ)
|
||||||
@@ -138,14 +198,27 @@ void handle(const sf::Event::MouseButtonPressed &mouseBP, State &gs)
|
|||||||
pos = {p->globalPos[1]+ p->body.getPos()[1], p->globalPos[2]+ p->body.getPos()[2]};
|
pos = {p->globalPos[1]+ p->body.getPos()[1], p->globalPos[2]+ p->body.getPos()[2]};
|
||||||
|
|
||||||
if (dist(pos,mouseBP.position) < 20){
|
if (dist(pos,mouseBP.position) < 20){
|
||||||
gs.selected = i;
|
gs.selected = p;
|
||||||
}
|
}
|
||||||
i++;
|
|
||||||
}
|
}
|
||||||
|
for (collection c : gs.createdColl){
|
||||||
|
for (auto p : c.pieces){
|
||||||
|
sf::Vector2f pos;
|
||||||
|
if (gs.selectedPlane == ReferencePlane::XZ)
|
||||||
|
pos = {p->globalPos[0]+ p->body.getPos()[0], p->globalPos[2]+ p->body.getPos()[2]};
|
||||||
|
else if (gs.selectedPlane == ReferencePlane::YZ)
|
||||||
|
pos = {p->globalPos[1]+ p->body.getPos()[1], p->globalPos[2]+ p->body.getPos()[2]};
|
||||||
|
|
||||||
|
if (dist(pos,mouseBP.position) < 20){
|
||||||
|
gs.selected = p;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
if ( mouseBP.button == sf::Mouse::Button::Right){
|
if ( mouseBP.button == sf::Mouse::Button::Right){
|
||||||
gs.rot_Piece = true;
|
gs.rot_Piece = true;
|
||||||
int i = 0;
|
|
||||||
for (PieceInterface* p : gs.pieces){
|
for (PieceInterface* p : gs.pieces){
|
||||||
sf::Vector2f pos;
|
sf::Vector2f pos;
|
||||||
if (gs.selectedPlane == ReferencePlane::XZ)
|
if (gs.selectedPlane == ReferencePlane::XZ)
|
||||||
@@ -154,33 +227,47 @@ void handle(const sf::Event::MouseButtonPressed &mouseBP, State &gs)
|
|||||||
pos = {p->globalPos[1]+ p->body.getPos()[1], p->globalPos[2]+ p->body.getPos()[2]};
|
pos = {p->globalPos[1]+ p->body.getPos()[1], p->globalPos[2]+ p->body.getPos()[2]};
|
||||||
|
|
||||||
if (dist(pos,mouseBP.position) < 20){
|
if (dist(pos,mouseBP.position) < 20){
|
||||||
gs.selected = i;
|
gs.selected = p;
|
||||||
}
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
for (collection c : gs.createdColl){
|
||||||
|
for (auto p : c.pieces){
|
||||||
|
sf::Vector2f pos;
|
||||||
|
if (gs.selectedPlane == ReferencePlane::XZ)
|
||||||
|
pos = {p->globalPos[0]+ p->body.getPos()[0], p->globalPos[2]+ p->body.getPos()[2]};
|
||||||
|
else if (gs.selectedPlane == ReferencePlane::YZ)
|
||||||
|
pos = {p->globalPos[1]+ p->body.getPos()[1], p->globalPos[2]+ p->body.getPos()[2]};
|
||||||
|
|
||||||
void handle(const sf::Event::MouseButtonReleased &, State &gs)
|
if (dist(pos,mouseBP.position) < 20){
|
||||||
|
gs.selected = p;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void handle_mouseRelease(const sf::Event::MouseButtonReleased &, State &gs)
|
||||||
{
|
{
|
||||||
gs.drag = false;
|
gs.drag = false;
|
||||||
gs.drag_Piece = false;
|
gs.drag_Piece = false;
|
||||||
gs.rot_Piece = false;
|
gs.rot_Piece = false;
|
||||||
gs.selected = -1;
|
gs.selected = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
void handle(const sf::Event::Resized &resized, State &gs)
|
|
||||||
|
|
||||||
|
void handle_resize(const sf::Event::Resized &resized, State &gs)
|
||||||
{
|
{
|
||||||
sf::FloatRect visibleArea({0.f, 0.f}, sf::Vector2f(resized.size));
|
sf::FloatRect visibleArea({0.f, 0.f}, sf::Vector2f(resized.size));
|
||||||
gs.window.setView(sf::View(visibleArea));
|
gs.window.setView(sf::View(visibleArea));
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
|
||||||
void handle(const T &, State &gs)
|
|
||||||
{
|
|
||||||
// All unhandled events will end up here
|
|
||||||
}
|
|
||||||
///
|
///
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
@@ -191,18 +278,100 @@ void doGUI(State &gs)
|
|||||||
{
|
{
|
||||||
// TODO: here code to display the menus
|
// TODO: here code to display the menus
|
||||||
//Bottoni
|
//Bottoni
|
||||||
|
sf::Time elapsed = gs.clock.restart();
|
||||||
|
|
||||||
|
unsigned int zero = 0;
|
||||||
|
|
||||||
|
ImGui::SFML::Update(gs.window, elapsed);
|
||||||
|
ImGui::ShowDemoWindow();
|
||||||
|
|
||||||
|
//Finestra gestione posizione nei dati
|
||||||
|
ImGuiWindowFlags sdp_flags = ImGuiWindowFlags_NoMove|
|
||||||
|
ImGuiWindowFlags_NoResize|
|
||||||
|
ImGuiWindowFlags_NoScrollbar|
|
||||||
|
ImGuiWindowFlags_NoCollapse|
|
||||||
|
ImGuiWindowFlags_NoTitleBar;
|
||||||
|
|
||||||
|
ImGui::Begin("Set data position", 0,sdp_flags);
|
||||||
|
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x * 0.3);
|
||||||
|
ImGui::SliderScalar("Start", ImGuiDataType_U32 ,gs.intervalMinLimit,&zero,gs.intervalMajLimit);
|
||||||
|
ImGui::SameLine();
|
||||||
|
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x * 0.5);
|
||||||
|
if (ImGui::SliderScalar("Pos", ImGuiDataType_U32 ,gs.pos,gs.intervalMinLimit,gs.intervalMajLimit)){
|
||||||
|
gs.play = false;
|
||||||
|
}
|
||||||
|
ImGui::SameLine();
|
||||||
|
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x * 0.8);
|
||||||
|
ImGui::SliderScalar("End", ImGuiDataType_U32 ,gs.intervalMajLimit,gs.intervalMinLimit,&gs.maxEntries);
|
||||||
|
bool red = false;
|
||||||
|
if (!gs.play){
|
||||||
|
ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(1,0,0,1));
|
||||||
|
red = true;
|
||||||
|
}
|
||||||
|
ImGui::SameLine();
|
||||||
|
if (ImGui::ArrowButton("Play", ImGuiDir_Right)){
|
||||||
|
gs.play = !gs.play;
|
||||||
|
}
|
||||||
|
if (red) ImGui::PopStyleColor();
|
||||||
|
ImGui::End();
|
||||||
|
|
||||||
|
|
||||||
|
//Finestra gestione piano visualizzazione
|
||||||
|
ImGui::Begin("Set visualization plane",0,sdp_flags);
|
||||||
|
const char* MyEnumNames[] = { "XZ", "YZ", "-XZ" };
|
||||||
|
int currentPlane = (int)gs.selectedPlane;
|
||||||
|
if (ImGui::SliderInt("Selected Plane", ¤tPlane,0,2,MyEnumNames[currentPlane])){
|
||||||
|
gs.selectedPlane = (ReferencePlane)currentPlane;
|
||||||
|
gs.updateCollections();
|
||||||
|
}
|
||||||
|
|
||||||
|
ImGui::End();
|
||||||
|
|
||||||
|
|
||||||
|
sf::Vector2u wsize = gs.window.getSize();
|
||||||
|
ImGui::SetWindowPos("Set data position",ImVec2(0,wsize.y - 30));
|
||||||
|
ImGui::SetWindowSize("Set data position",ImVec2(wsize.x,30));
|
||||||
|
ImGui::SetWindowPos("Set visualization plane",ImVec2(wsize.x-400,0));
|
||||||
|
ImGui::SetWindowSize("Set visualization plane",ImVec2(400,30));
|
||||||
|
ImGui::SFML::Render(gs.window);
|
||||||
}
|
}
|
||||||
|
|
||||||
void doGraphics(State &gs)
|
void doGraphics(State &gs)
|
||||||
{
|
{
|
||||||
gs.window.clear();
|
|
||||||
doGUI(gs);
|
|
||||||
|
|
||||||
|
gs.window.clear();
|
||||||
|
|
||||||
|
//disegno i pezzi singoli
|
||||||
for(PieceInterface* p: gs.pieces){
|
for(PieceInterface* p: gs.pieces){
|
||||||
gs.window.draw(*p->draw(gs.selectedPlane));
|
gs.window.draw(*p->draw(gs.selectedPlane));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//disegno le collezioni
|
||||||
|
for(auto c : gs.createdColl){
|
||||||
|
for(auto p : c.pieces){
|
||||||
|
gs.window.draw(*p->draw(gs.selectedPlane));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
while (const std::optional event = gs.window.pollEvent()) {
|
||||||
|
ImGui::SFML::ProcessEvent(gs.window, *event);
|
||||||
|
if (event->is<sf::Event::Closed>())
|
||||||
|
handle_close (gs);
|
||||||
|
if (const auto* resized = event->getIf<sf::Event::Resized>())
|
||||||
|
handle_resize (*resized, gs);
|
||||||
|
if (const auto* pressed = event->getIf<sf::Event::KeyPressed>())
|
||||||
|
handle_keyPressed (*pressed, gs);
|
||||||
|
if (const auto* moved = event->getIf<sf::Event::MouseMoved>())
|
||||||
|
handle_mouseMove (*moved, gs);
|
||||||
|
if (const auto* mpressed = event->getIf<sf::Event::MouseButtonPressed>())
|
||||||
|
handle_mousePressed (*mpressed, gs);
|
||||||
|
if (const auto* mreleased = event->getIf<sf::Event::MouseButtonReleased>())
|
||||||
|
handle_mouseRelease (*mreleased, gs);
|
||||||
|
}
|
||||||
|
doGUI(gs);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// TODO: add here code to display shapes in your canvas
|
// TODO: add here code to display shapes in your canvas
|
||||||
|
|
||||||
gs.window.display();
|
gs.window.display();
|
||||||
|
|||||||
+48
-13
@@ -1,7 +1,5 @@
|
|||||||
#include "include.hpp"
|
#include "include.hpp"
|
||||||
|
|
||||||
#define DATA_PATH std::string("./../../data/")
|
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
CSVProcessor processor;
|
CSVProcessor processor;
|
||||||
try {
|
try {
|
||||||
@@ -28,18 +26,26 @@ int main() {
|
|||||||
std::cerr << "Error: " << e.what() << std::endl;
|
std::cerr << "Error: " << e.what() << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// inizializzo variabili per gestire l'intervallo di visualizzazione
|
||||||
|
|
||||||
|
unsigned int min = 0;
|
||||||
|
unsigned int pos = 0;
|
||||||
|
unsigned int maj = 100;
|
||||||
|
|
||||||
//Costruisco la GUI
|
//Costruisco la GUI
|
||||||
State gs(800, 600, "Visualizzatore passo");
|
State gs(800, 700, "Visualizzatore passo",&maj,&min,&pos);
|
||||||
gs.window.setFramerateLimit(60);
|
gs.window.setFramerateLimit(70);
|
||||||
printf("Costruisco gli oggetti\n");
|
printf("Costruisco gli oggetti\n");
|
||||||
|
|
||||||
try{
|
try{
|
||||||
|
|
||||||
processor.readCSVFile (DATA_PATH + "coscia_filt.csv");
|
processor.readCSVFile (DATA_PATH + "coscia_filt.csv");
|
||||||
const auto& coscia = processor.getData();
|
const auto& coscia = processor.getData();
|
||||||
|
gs.setIntervall(coscia.size());
|
||||||
|
|
||||||
|
/*
|
||||||
gs.pieces.push_back(new Coscia (rb::Vector3{300,300,300},2));
|
gs.pieces.push_back(new Coscia (rb::Vector3{0,0,0},2));
|
||||||
gs.pieces.push_back(new Sensore (rb::Vector3{300,300,300},_Float16( 0.2 ),900,3000,coscia));
|
gs.pieces.push_back(new Sensore (rb::Vector3{300,300,300},_Float16( 0.2 ),&pos,coscia));
|
||||||
gs.pieces.push_back(new Caviglia (rb::Vector3{300,300,500},1));
|
gs.pieces.push_back(new Caviglia (rb::Vector3{300,300,500},1));
|
||||||
|
|
||||||
gs.pieces[1]->body.setRot({0,0,0});
|
gs.pieces[1]->body.setRot({0,0,0});
|
||||||
@@ -47,13 +53,13 @@ int main() {
|
|||||||
|
|
||||||
processor.readCSVFile(DATA_PATH + "caviglia_filt.csv");
|
processor.readCSVFile(DATA_PATH + "caviglia_filt.csv");
|
||||||
const auto& caviglia = processor.getData();
|
const auto& caviglia = processor.getData();
|
||||||
gs.pieces.push_back(new Sensore (rb::Vector3{300,300,500},_Float16( 0.2 ),900,3000,caviglia));
|
gs.pieces.push_back(new Sensore (rb::Vector3{300,300,500},_Float16( 0.2 ),&pos,caviglia));
|
||||||
|
|
||||||
gs.pieces.push_back(new Torso(rb::Vector3{300,400,150},2));
|
gs.pieces.push_back(new Torso(rb::Vector3{300,400,150},2));
|
||||||
|
|
||||||
// modifico la rotazione relativa della gamba
|
// modifico la rotazione relativa della gamba
|
||||||
gs.pieces[1]->body.setRot({_Float16 (1.3),_Float16 (1.5),0});
|
gs.pieces[1]->body.setRot({_Float16 (1.3),_Float16 (1.7),0});
|
||||||
gs.pieces[3]->body.setRot({_Float16 (1.8),_Float16 (1.5),0});
|
gs.pieces[3]->body.setRot({_Float16 (1.8),_Float16 (1.7),0});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -63,6 +69,23 @@ int main() {
|
|||||||
gs.joints.push_back(new PivotJoint(gs.pieces[1], {gs.pieces[3]}, rb::Vector3{0,0,100}));
|
gs.joints.push_back(new PivotJoint(gs.pieces[1], {gs.pieces[3]}, rb::Vector3{0,0,100}));
|
||||||
gs.joints.push_back(new RigidJoint(gs.pieces[3], {gs.pieces[2]}));
|
gs.joints.push_back(new RigidJoint(gs.pieces[3], {gs.pieces[2]}));
|
||||||
|
|
||||||
|
gs.pieces[2]->setDirection(Direction::R);
|
||||||
|
*/
|
||||||
|
//provo ad aggiungere una collection
|
||||||
|
//gs.collections.push_back(new Gamba({220,0,220},&pos,"coscia_filt.csv","caviglia_filt.csv"));
|
||||||
|
|
||||||
|
std::vector<gamba_data> data;
|
||||||
|
gamba_data d;
|
||||||
|
d.dataPos = &pos;
|
||||||
|
d.cavigliaData = "caviglia_dx.csv";
|
||||||
|
d.cosciaData = "coscia_dx.csv";
|
||||||
|
gamba_data s;
|
||||||
|
s.dataPos = &pos;
|
||||||
|
s.cavigliaData = "caviglia_sx.csv";
|
||||||
|
s.cosciaData = "coscia_sx.csv";
|
||||||
|
data.push_back(d);
|
||||||
|
data.push_back(s);
|
||||||
|
gs.collections.push_back(new Lower_Body(rb::Vector3{200,200,100},data));
|
||||||
|
|
||||||
printf("Ho costruito tutto!\n");
|
printf("Ho costruito tutto!\n");
|
||||||
}
|
}
|
||||||
@@ -70,13 +93,25 @@ int main() {
|
|||||||
printf("%s\n",e);
|
printf("%s\n",e);
|
||||||
}
|
}
|
||||||
printf("Avvio l'interfaccia grafica\n");
|
printf("Avvio l'interfaccia grafica\n");
|
||||||
|
|
||||||
|
|
||||||
|
unsigned int curTime = 0;
|
||||||
|
unsigned int freq = 50;
|
||||||
|
const unsigned int T = 1000/freq; //i sensori hanno una freq di campionamento di 50hz
|
||||||
|
|
||||||
//Avvio il loop della GUI
|
//Avvio il loop della GUI
|
||||||
gs.clock.start();
|
gs.clock.start();
|
||||||
|
gs.updateCollections();
|
||||||
|
|
||||||
|
sf::Clock mainClock;
|
||||||
while (gs.window.isOpen())
|
while (gs.window.isOpen())
|
||||||
{
|
{
|
||||||
// event loop and handler through callbacks
|
curTime += mainClock.restart().asMilliseconds();
|
||||||
gs.window.handleEvents([&](const auto &event)
|
if (curTime > T){
|
||||||
{ handle(event, gs); });
|
if (gs.play && pos+curTime/T < maj) pos += curTime / T;
|
||||||
|
curTime = 0;
|
||||||
|
}
|
||||||
|
|
||||||
// Show update
|
// Show update
|
||||||
gs.update();
|
gs.update();
|
||||||
doGraphics(gs);
|
doGraphics(gs);
|
||||||
|
|||||||
Reference in New Issue
Block a user