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<double_t> audioFile;
+  AudioFile<double> 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<int16_t> (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 <stdint.h>
 #include <stdbool.h>
 #include <string.h>
-#include <stdlib.h>
\ No newline at end of file
+#include <stdlib.h>
+#include <float.h>
\ No newline at end of file