-- Building for: Visual Studio 17 2022
-- Selecting Windows SDK version 10.0.22000.0 to target Windows 10.0.22621.
-- The C compiler identification is MSVC 19.37.32822.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: D:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.37.32822/bin/Hostx64/x64/cl.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- SH_ENGINE_VERSION : pre-release
-- SH_ENGINE_ROOT_DIR : D:/home/desktop/github/shengine
-- SH_ENGINE_BINARIES_DIR : D:/home/desktop/github/shengine/bin
-- SH_APPLICATION_PATH : D:/home/desktop/github/shengine/applications/triangle
-- SH_APPLICATION_NAME : triangle
-- Found Vulkan: D:/lib/vulkan-sdk-1.3.261.1/Lib/vulkan-1.lib (found version "1.3.261") found components: glslc glslangValidator
-- shvulkan message: found Vulkan
-- shvulkan message: Vulkan_INCLUDE_DIR: D:/lib/vulkan-sdk-1.3.261.1/Include
-- shvulkan message: Vulkan_LIBRARY: D:/lib/vulkan-sdk-1.3.261.1/Lib/vulkan-1.lib
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - not found
-- Found Threads: TRUE
-- Found Doxygen: D:/bin/doxygen/bin/doxygen.exe (found version "1.9.8") found components: doxygen
-- Including Win32 support
-- Found Doxygen: D:/bin/doxygen/bin/doxygen.exe (found version "1.9.8") found components: doxygen missing components: dot
-- Configuring D:/home/desktop/github/shengine/collection/externals/shgui/docs/Doxyfile from D:/home/desktop/github/shengine/collection/externals/shgui/docs/Doxyfile.in
-- Creating custom docs command: D:/bin/doxygen/bin/doxygen.exe D:/home/desktop/github/shengine/collection/externals/shgui/docs/Doxyfile
-- SMD_VERSION : pre-release
-- SMD_ROOT_DIR : D:/home/desktop/github/shengine/collection/externals/smd
-- SMD_BINARIES_DIR : D:/home/desktop/github/shengine/collection/externals/smd/bin
-- SMD_BUILD_EXAMPLE : OFF
-- Configuring D:/home/desktop/github/shengine/docs/Doxyfile from D:/home/desktop/github/shengine/docs/Doxyfile.in
-- Creating custom docs command: D:/bin/doxygen/bin/doxygen.exe D:/home/desktop/github/shengine/docs/Doxyfile
-- Configuring done (15.0s)
-- Generating done (1.8s)
-- Build files have been written to: D:/home/desktop/github/shengine/applications/triangle/build/windows
--------------------------------------------------------------------------------
EXAMPLE CALL: python export-application.py name=noise target=SHARED
EXAMPLE CALL: python export-application.py name=noise target=STATIC path=applications/noise
EXAMPLE CALL: python export-application.py name=noise target=SHARED path=applications/noise generator=MinGW-Makefiles
EXAMPLE CALL: python export-application.py name=noise target=EXECUTABLE path=applications/noise generator=MinGW-Makefiles CLEAN-CACHE
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
platform: windows
python_src_dir: D:/home/desktop/github/shengine
name: triangle
path: D:/home/desktop/github/shengine/applications/triangle
target_type: EXECUTABLE
generator:
clean-cache:
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
loading D:/home/desktop/github/shengine/applications/triangle/source-files.txt
src files:
src/triangle.c
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
loading D:/home/desktop/github/shengine/applications/triangle/libs.txt
additional libraries:
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
CMake subdirectories:
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
CMake file:
cmake_minimum_required(VERSION 3.0)
add_definitions(-DCMAKE_EXPORT_COMPILE_COMMANDS=ON)
project(triangle C)
option(SH_APPLICATION_BINARY_TYPE CACHE "EXECUTABLE")
if("${SH_APPLICATION_BINARY_TYPE}" STREQUAL "STATIC")
add_library(${SH_APPLICATION_NAME} STATIC
D:/home/desktop/github/shengine/applications/triangle/src/triangle.c
)
elseif("${SH_APPLICATION_BINARY_TYPE}" STREQUAL "SHARED")
add_library(${SH_APPLICATION_NAME} SHARED
D:/home/desktop/github/shengine/applications/triangle/src/triangle.c
)
target_compile_definitions(shengine PUBLIC SH_APPLICATION_TARGET_TYPE_SHARED=1)
set_target_properties(${SH_APPLICATION_NAME} sheditor PROPERTIES
ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/bin/windows/
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/bin/windows/
VS_DEBUGGER_WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/bin/windows/
)
elseif("${SH_APPLICATION_BINARY_TYPE}" STREQUAL "EXECUTABLE")
add_executable(${SH_APPLICATION_NAME}
D:/home/desktop/github/shengine/applications/triangle/src/triangle.c
D:/home/desktop/github/shengine/collection/sheditor/src/shEditor.c
)
target_include_directories(${SH_APPLICATION_NAME} PUBLIC D:/home/desktop/github/shengine/collection/sheditor/include)
target_compile_definitions(${SH_APPLICATION_NAME} PUBLIC SH_APPLICATION_TARGET_TYPE_EXECUTABLE=1)
set_target_properties(${SH_APPLICATION_NAME} PROPERTIES
ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/bin/windows
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/bin/windows
VS_DEBUGGER_WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/bin/windows/
)
endif()
target_include_directories(${SH_APPLICATION_NAME} PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}/include
)
target_link_libraries(
${SH_APPLICATION_NAME} PUBLIC shengine
)
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
writing to CMake file: D:/home/desktop/github/shengine/applications/triangle/CMakeLists.txt
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Build path: D:/home/desktop/github/shengine/applications/triangle/build/windows
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
creating build directory: D:/home/desktop/github/shengine/applications/triangle/build/windows
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
running command:
cd D:/home/desktop/github/shengine/applications/triangle/build/windows && cmake D:/home/desktop/github/shengine -DSH_ENGINE_BUILD_EDITOR=ON -DSH_APPLICATION_PATH=D:/home/desktop/github/shengine/applications/triangle -DSH_APPLICATION_NAME=triangle -DSH_APPLICATION_BINARY_TYPE=EXECUTABLE
--------------------------------------------------------------------------------
-- Building for: Visual Studio 17 2022
-- Selecting Windows SDK version 10.0.22000.0 to target Windows 10.0.22621.
-- The C compiler identification is MSVC 19.37.32822.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: D:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.37.32822/bin/Hostx64/x64/cl.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- SH_ENGINE_VERSION : pre-release
-- SH_ENGINE_ROOT_DIR : D:/home/desktop/github/shengine
-- SH_ENGINE_BINARIES_DIR : D:/home/desktop/github/shengine/bin
-- SH_APPLICATION_PATH : D:/home/desktop/github/shengine/applications/noise
-- SH_APPLICATION_NAME : noise
-- Found Vulkan: D:/lib/vulkan-sdk-1.3.261.1/Lib/vulkan-1.lib (found version "1.3.261") found components: glslc glslangValidator
-- shvulkan message: found Vulkan
-- shvulkan message: Vulkan_INCLUDE_DIR: D:/lib/vulkan-sdk-1.3.261.1/Include
-- shvulkan message: Vulkan_LIBRARY: D:/lib/vulkan-sdk-1.3.261.1/Lib/vulkan-1.lib
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - not found
-- Found Threads: TRUE
-- Found Doxygen: D:/bin/doxygen/bin/doxygen.exe (found version "1.9.8") found components: doxygen
-- Including Win32 support
-- Found Doxygen: D:/bin/doxygen/bin/doxygen.exe (found version "1.9.8") found components: doxygen missing components: dot
-- Configuring D:/home/desktop/github/shengine/collection/externals/shgui/docs/Doxyfile from D:/home/desktop/github/shengine/collection/externals/shgui/docs/Doxyfile.in
-- Creating custom docs command: D:/bin/doxygen/bin/doxygen.exe D:/home/desktop/github/shengine/collection/externals/shgui/docs/Doxyfile
-- SMD_VERSION : pre-release
-- SMD_ROOT_DIR : D:/home/desktop/github/shengine/collection/externals/smd
-- SMD_BINARIES_DIR : D:/home/desktop/github/shengine/collection/externals/smd/bin
-- SMD_BUILD_EXAMPLE : OFF
-- Configuring D:/home/desktop/github/shengine/docs/Doxyfile from D:/home/desktop/github/shengine/docs/Doxyfile.in
-- Creating custom docs command: D:/bin/doxygen/bin/doxygen.exe D:/home/desktop/github/shengine/docs/Doxyfile
-- Configuring done (18.9s)
-- Generating done (1.1s)
-- Build files have been written to: D:/home/desktop/github/shengine/applications/noise/build/windows
--------------------------------------------------------------------------------
EXAMPLE CALL: python export-application.py name=noise target=SHARED
EXAMPLE CALL: python export-application.py name=noise target=STATIC path=applications/noise
EXAMPLE CALL: python export-application.py name=noise target=SHARED path=applications/noise generator=MinGW-Makefiles
EXAMPLE CALL: python export-application.py name=noise target=EXECUTABLE path=applications/noise generator=MinGW-Makefiles CLEAN-CACHE
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
platform: windows
python_src_dir: D:/home/desktop/github/shengine
name: noise
path: D:/home/desktop/github/shengine/applications/noise
target_type: EXECUTABLE
generator:
clean-cache:
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
loading D:/home/desktop/github/shengine/applications/noise/source-files.txt
src files:
src/noise.c
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
loading D:/home/desktop/github/shengine/applications/noise/libs.txt
additional libraries:
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
CMake subdirectories:
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
CMake file:
cmake_minimum_required(VERSION 3.0)
add_definitions(-DCMAKE_EXPORT_COMPILE_COMMANDS=ON)
project(noise C)
option(SH_APPLICATION_BINARY_TYPE CACHE "EXECUTABLE")
if("${SH_APPLICATION_BINARY_TYPE}" STREQUAL "STATIC")
add_library(${SH_APPLICATION_NAME} STATIC
D:/home/desktop/github/shengine/applications/noise/src/noise.c
)
elseif("${SH_APPLICATION_BINARY_TYPE}" STREQUAL "SHARED")
add_library(${SH_APPLICATION_NAME} SHARED
D:/home/desktop/github/shengine/applications/noise/src/noise.c
)
target_compile_definitions(shengine PUBLIC SH_APPLICATION_TARGET_TYPE_SHARED=1)
set_target_properties(${SH_APPLICATION_NAME} sheditor PROPERTIES
ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/bin/windows/
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/bin/windows/
VS_DEBUGGER_WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/bin/windows/
)
elseif("${SH_APPLICATION_BINARY_TYPE}" STREQUAL "EXECUTABLE")
add_executable(${SH_APPLICATION_NAME}
D:/home/desktop/github/shengine/applications/noise/src/noise.c
D:/home/desktop/github/shengine/collection/sheditor/src/shEditor.c
)
target_include_directories(${SH_APPLICATION_NAME} PUBLIC D:/home/desktop/github/shengine/collection/sheditor/include)
target_compile_definitions(${SH_APPLICATION_NAME} PUBLIC SH_APPLICATION_TARGET_TYPE_EXECUTABLE=1)
set_target_properties(${SH_APPLICATION_NAME} PROPERTIES
ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/bin/windows
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/bin/windows
VS_DEBUGGER_WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/bin/windows/
)
endif()
target_include_directories(${SH_APPLICATION_NAME} PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}/include
)
target_link_libraries(
${SH_APPLICATION_NAME} PUBLIC shengine
)
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
writing to CMake file: D:/home/desktop/github/shengine/applications/noise/CMakeLists.txt
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Build path: D:/home/desktop/github/shengine/applications/noise/build/windows
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
creating build directory: D:/home/desktop/github/shengine/applications/noise/build/windows
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
running command:
cd D:/home/desktop/github/shengine/applications/noise/build/windows && cmake D:/home/desktop/github/shengine -DSH_ENGINE_BUILD_EDITOR=ON -DSH_APPLICATION_PATH=D:/home/desktop/github/shengine/applications/noise -DSH_APPLICATION_NAME=noise -DSH_APPLICATION_BINARY_TYPE=EXECUTABLE
--------------------------------------------------------------------------------
Versione di MSBuild L17.7.2+d6990bcfa per .NET Framework
Checking Build System
Generating HTML documentation
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shgui/externals/glfw/docs/CMakeLists.txt
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/cglm/CMakeLists.txt
euler.c
affine.c
io.c
quat.c
cam.c
vec2.c
ivec2.c
vec3.c
ivec3.c
vec4.c
ivec4.c
mat2.c
mat2x3.c
mat2x4.c
mat3.c
mat3x2.c
mat3x4.c
mat4.c
mat4x2.c
mat4x3.c
Generazione del codice in corso...
Compilazione in corso...
plane.c
frustum.c
box.c
project.c
sphere.c
ease.c
curve.c
bezier.c
ray.c
affine2d.c
ortho_lh_no.c
ortho_lh_zo.c
ortho_rh_no.c
ortho_rh_zo.c
persp_lh_no.c
persp_lh_zo.c
persp_rh_no.c
persp_rh_zo.c
view_lh_no.c
view_lh_zo.c
Generazione del codice in corso...
Compilazione in corso...
view_rh_no.c
view_rh_zo.c
project_no.c
project_zo.c
Generazione del codice in corso...
Creazione della libreria D:/home/desktop/github/shengine/bin/windows/Debug/cglm.lib e dell'oggetto D:/home/desktop/github/shengine/bin/windows/Debug/cglm.exp
cglm.vcxproj -> D:\home\desktop\github\shengine\applications\triangle\build\windows\collection\externals\cglm\Debug\cglm-0.dll
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shgui/externals/glfw/src/CMakeLists.txt
context.c
init.c
input.c
monitor.c
platform.c
vulkan.c
window.c
egl_context.c
osmesa_context.c
null_init.c
null_monitor.c
null_window.c
null_joystick.c
win32_module.c
win32_time.c
win32_thread.c
win32_init.c
win32_joystick.c
win32_monitor.c
win32_window.c
Generazione del codice in corso...
Compilazione in corso...
wgl_context.c
Generazione del codice in corso...
glfw.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\glfw3.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shgui/externals/native-export/c/CMakeLists.txt
native-export.c
native-export.vcxproj -> D:\home\desktop\github\shengine\bin\Debug\native-export.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/plyimporter/CMakeLists.txt
plyImporter.c
plyimporter.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\plyimporter.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shvulkan/CMakeLists.txt
shVulkan.c
shvulkan.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\shvulkan.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/smd/CMakeLists.txt
smd.c
smd.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\smd.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/CMakeLists.txt
shEnvironment.c
shFileUtilities.c
Generazione del codice in corso...
shenvironment.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\shenvironment.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shthreads/CMakeLists.txt
shthreads.c
shthreads.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\shthreads.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/CMakeLists.txt
shApplicationHost.c
shapplication-host.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\shapplication-host.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shgui/CMakeLists.txt
shgui.c
shgui-font.c
Generazione del codice in corso...
shgui.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\shgui.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shserial/CMakeLists.txt
shSerial.c
shserial.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\shserial.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/CMakeLists.txt
shEngine.c
shInput.c
shTime.c
shProfiling.c
shWindow.c
shLinearAlgebra.c
shScene.c
shEngineUI.c
Generazione del codice in corso...
shengine.vcxproj -> D:\home\desktop\github\shengine\applications\triangle\build\windows\collection\Debug\shengine.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/CMakeLists.txt
shEditor.c
sheditor.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\sheditor.exe
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shgui/CMakeLists.txt
shgui-app.c
shgui-app.vcxproj -> D:\home\desktop\github\shengine\collection\externals\shgui\bin\windows\Debug\shgui-app.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shgui/CMakeLists.txt
export-shaders.c
shgui-export-shaders.vcxproj -> D:\home\desktop\github\shengine\collection\externals\shgui\bin\windows\Debug\shgui-export-shaders.exe
Building Custom Rule D:/home/desktop/github/shengine/applications/triangle/CMakeLists.txt
triangle.c
shEditor.c
Generazione del codice in corso...
Creazione della libreria D:/home/desktop/github/shengine/applications/triangle/bin/windows/Debug/triangle.lib e dell'oggetto D:/home/desktop/github/shengine/applications/triangle/bin/windows/Debug/triangle.exp
triangle.vcxproj -> D:\home\desktop\github\shengine\applications\triangle\bin\windows\Debug\triangle.exe
Building Custom Rule D:/home/desktop/github/shengine/CMakeLists.txt
Versione di MSBuild L17.7.2+d6990bcfa per .NET Framework
Checking Build System
Generating HTML documentation
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shgui/externals/glfw/docs/CMakeLists.txt
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/cglm/CMakeLists.txt
euler.c
affine.c
io.c
quat.c
cam.c
vec2.c
ivec2.c
vec3.c
ivec3.c
vec4.c
ivec4.c
mat2.c
mat2x3.c
mat2x4.c
mat3.c
mat3x2.c
mat3x4.c
mat4.c
mat4x2.c
mat4x3.c
Generazione del codice in corso...
Compilazione in corso...
plane.c
frustum.c
box.c
project.c
sphere.c
ease.c
curve.c
bezier.c
ray.c
affine2d.c
ortho_lh_no.c
ortho_lh_zo.c
ortho_rh_no.c
ortho_rh_zo.c
persp_lh_no.c
persp_lh_zo.c
persp_rh_no.c
persp_rh_zo.c
view_lh_no.c
view_lh_zo.c
Generazione del codice in corso...
Compilazione in corso...
view_rh_no.c
view_rh_zo.c
project_no.c
project_zo.c
Generazione del codice in corso...
Creazione della libreria D:/home/desktop/github/shengine/bin/windows/Debug/cglm.lib e dell'oggetto D:/home/desktop/github/shengine/bin/windows/Debug/cglm.exp
cglm.vcxproj -> D:\home\desktop\github\shengine\applications\noise\build\windows\collection\externals\cglm\Debug\cglm-0.dll
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shgui/externals/glfw/src/CMakeLists.txt
context.c
init.c
input.c
monitor.c
platform.c
vulkan.c
window.c
egl_context.c
osmesa_context.c
null_init.c
null_monitor.c
null_window.c
null_joystick.c
win32_module.c
win32_time.c
win32_thread.c
win32_init.c
win32_joystick.c
win32_monitor.c
win32_window.c
Generazione del codice in corso...
Compilazione in corso...
wgl_context.c
Generazione del codice in corso...
glfw.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\glfw3.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shgui/externals/native-export/c/CMakeLists.txt
native-export.c
native-export.vcxproj -> D:\home\desktop\github\shengine\bin\Debug\native-export.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/plyimporter/CMakeLists.txt
plyImporter.c
plyimporter.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\plyimporter.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shvulkan/CMakeLists.txt
shVulkan.c
shvulkan.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\shvulkan.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/smd/CMakeLists.txt
smd.c
smd.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\smd.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/CMakeLists.txt
shEnvironment.c
shFileUtilities.c
Generazione del codice in corso...
shenvironment.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\shenvironment.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shthreads/CMakeLists.txt
shthreads.c
shthreads.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\shthreads.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/CMakeLists.txt
shApplicationHost.c
shapplication-host.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\shapplication-host.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shgui/CMakeLists.txt
shgui.c
shgui-font.c
Generazione del codice in corso...
shgui.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\shgui.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shserial/CMakeLists.txt
shSerial.c
shserial.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\shserial.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/CMakeLists.txt
shEngine.c
shInput.c
shTime.c
shProfiling.c
shWindow.c
shLinearAlgebra.c
shScene.c
shEngineUI.c
Generazione del codice in corso...
shengine.vcxproj -> D:\home\desktop\github\shengine\applications\noise\build\windows\collection\Debug\shengine.lib
Building Custom Rule D:/home/desktop/github/shengine/applications/noise/CMakeLists.txt
noise.c
shEditor.c
Generazione del codice in corso...
Creazione della libreria D:/home/desktop/github/shengine/applications/noise/bin/windows/Debug/noise.lib e dell'oggetto D:/home/desktop/github/shengine/applications/noise/bin/windows/Debug/noise.exp
noise.vcxproj -> D:\home\desktop\github\shengine\applications\noise\bin\windows\Debug\noise.exe
Building Custom Rule D:/home/desktop/github/shengine/collection/CMakeLists.txt
shEditor.c
sheditor.vcxproj -> D:\home\desktop\github\shengine\bin\windows\Debug\sheditor.exe
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shgui/CMakeLists.txt
shgui-app.c
shgui-app.vcxproj -> D:\home\desktop\github\shengine\collection\externals\shgui\bin\windows\Debug\shgui-app.lib
Building Custom Rule D:/home/desktop/github/shengine/collection/externals/shgui/CMakeLists.txt
export-shaders.c
shgui-export-shaders.vcxproj -> D:\home\desktop\github\shengine\collection\externals\shgui\bin\windows\Debug\shgui-export-shaders.exe
Building Custom Rule D:/home/desktop/github/shengine/CMakeLists.txt