Don't test on clang and fix include problem in appveyor
Clang doesn't have the same --wrap linker flag that GCC has. Just ignore it for now.
This commit is contained in:
parent
138cba1400
commit
e222e51a0e
|
@ -202,7 +202,7 @@ if (MSVC)
|
||||||
endif (MSVC)
|
endif (MSVC)
|
||||||
|
|
||||||
# TESTS:
|
# TESTS:
|
||||||
IF (CMOCKA_FOUND)
|
IF (CMOCKA_FOUND AND NOT CLANG)
|
||||||
find_package(Threads REQUIRED)
|
find_package(Threads REQUIRED)
|
||||||
enable_testing()
|
enable_testing()
|
||||||
add_executable(test_util test/test_util src/util)
|
add_executable(test_util test/test_util src/util)
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
#ifndef KEYBOARD_H_
|
#ifndef KEYBOARD_H_
|
||||||
#define KEYBOARD_H_
|
#define KEYBOARD_H_
|
||||||
|
|
||||||
#include <SDL.h>
|
#include <SDL_events.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include "defines.h"
|
#include "defines.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue