From 7db25fc6595c44e9970ce3f8398bf08ae256870d Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Fri, 3 Feb 2023 06:11:31 -0800 Subject: [PATCH] Fixed compiling on linux --- lib/CMakeLists.txt | 3 +++ src/dawn/scene/components/display/Camera.hpp | 2 +- src/dawntools/audio/audiogen/main.cpp | 8 ++++---- src/dawntools/utils/common.h | 3 ++- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index 6d710cee..f314297f 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -25,4 +25,7 @@ target_include_directories(stb INTERFACE stb) # OpenAL set(LIBTYPE "STATIC") add_subdirectory(openal-soft) + +set(BUILD_TESTS OFF CACHE BOOL "Build tests") +set(BUILD_EXAMPLES OFF CACHE BOOL "Build examples") add_subdirectory(AudioFile) \ No newline at end of file diff --git a/src/dawn/scene/components/display/Camera.hpp b/src/dawn/scene/components/display/Camera.hpp index 8a9889b2..2b11837e 100644 --- a/src/dawn/scene/components/display/Camera.hpp +++ b/src/dawn/scene/components/display/Camera.hpp @@ -6,7 +6,7 @@ #pragma once #include "scene/SceneItemComponent.hpp" #include "display/RenderTarget.hpp" -#include "scene/Scene.hpp " +#include "scene/Scene.hpp" namespace Dawn { enum CameraType { diff --git a/src/dawntools/audio/audiogen/main.cpp b/src/dawntools/audio/audiogen/main.cpp index 0172c482..3ffe8dde 100644 --- a/src/dawntools/audio/audiogen/main.cpp +++ b/src/dawntools/audio/audiogen/main.cpp @@ -33,7 +33,7 @@ int main(int argc, char *argv[]) { } // Load input file - AudioFile audioFile; + AudioFile audioFile; if(!audioFile.load(strFileIn)) { printf("Failed to load audio file.\n"); return 1; @@ -61,9 +61,9 @@ int main(int argc, char *argv[]) { fwrite(buffer, sizeof(char), bufferLength, fileOut); // Convert Data to 16 bit audio - for (int i = 0; i < audioFile.getNumSamplesPerChannel(); i++) { - for(int y = 0; y < audioFile.getNumChannels(); y++) { - double_t sample = audioFile.samples[y][i]; + for (int32_t i = 0; i < audioFile.getNumSamplesPerChannel(); i++) { + for(int32_t y = 0; y < audioFile.getNumChannels(); y++) { + double sample = audioFile.samples[y][i]; sample = sample < -1 ? -1 : sample > 1 ? 1 : sample; auto q = static_cast (sample * 32767.); diff --git a/src/dawntools/utils/common.h b/src/dawntools/utils/common.h index af02bd97..6614029e 100644 --- a/src/dawntools/utils/common.h +++ b/src/dawntools/utils/common.h @@ -10,4 +10,5 @@ #include #include #include -#include \ No newline at end of file +#include +#include \ No newline at end of file