src dir for reasons

This commit is contained in:
2022-11-18 20:53:50 +11:00
parent 4255841a6b
commit 065fa979f3
9 changed files with 4 additions and 4 deletions

View File

@ -12,10 +12,10 @@ if (USE_OPENGL)
endif() endif()
set(SOURCES set(SOURCES
maths.h src/maths.h
draw.h $<IF:$<BOOL:${USE_OPENGL}>,draw_opengl.c,draw.c> src/draw.h src/$<IF:$<BOOL:${USE_OPENGL}>,draw_opengl.c,draw.c>
stick.c stick.h src/stick.c src/stick.h
analogue.c) src/analogue.c)
add_executable(${TARGET} ${SOURCES}) add_executable(${TARGET} ${SOURCES})
target_link_libraries(${TARGET} target_link_libraries(${TARGET}

View File

View File

View File