We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 13ad1b7 + e8196b6 commit c3d4b1fCopy full SHA for c3d4b1f
2 files changed
CMakeLists.txt
@@ -16,7 +16,10 @@ if(COMMAND register_component)
16
register_component()
17
else()
18
add_library(u8g2 ${COMPONENT_SRCS})
19
- target_include_directories(u8g2 PUBLIC "$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/csrc>" "$<INSTALL_INTERFACE:include>")
+ target_include_directories(u8g2 PUBLIC
20
+ "$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/csrc>"
21
+ "$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/cppsrc>"
22
+ "$<INSTALL_INTERFACE:include>")
23
endif()
24
25
install(TARGETS u8g2
sys/sdl/common/u8x8_d_sdl_128x64.c
@@ -7,6 +7,7 @@
7
#include "SDL.h"
8
#endif
9
#include <assert.h>
10
+#include <stdio.h>
11
12
//#define HEIGHT (64)
13
//#define WIDTH 128
0 commit comments