From 36a75231214865c8fdb042842bfb074e917fe05a Mon Sep 17 00:00:00 2001 From: CharlesThobe Date: Thu, 6 Jan 2022 04:47:41 +0200 Subject: [PATCH] fix missing windows include directory in libosd it now matches the genie script --- cmake_subdirs/ocore_sdl/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmake_subdirs/ocore_sdl/CMakeLists.txt b/cmake_subdirs/ocore_sdl/CMakeLists.txt index e2a4052..1269f47 100644 --- a/cmake_subdirs/ocore_sdl/CMakeLists.txt +++ b/cmake_subdirs/ocore_sdl/CMakeLists.txt @@ -30,6 +30,9 @@ target_sources(ocore_sdl PRIVATE ${CMAKE_SOURCE_DIR}/src/osd/modules/file/posixsocket.cpp ) elseif(WIN32) +include_directories( + ${CMAKE_SOURCE_DIR}/src/osd/windows +) target_sources(ocore_sdl PRIVATE ${CMAKE_SOURCE_DIR}/src/osd/modules/file/windir.cpp ${CMAKE_SOURCE_DIR}/src/osd/modules/file/winfile.cpp