[c-host] restructure project to use cmake

This commit is contained in:
Geoffrey McRae
2019-04-09 16:28:11 +10:00
parent ccd0fd8902
commit a82b1a2e2f
25 changed files with 237 additions and 99 deletions

View File

@@ -0,0 +1,23 @@
cmake_minimum_required(VERSION 3.0)
project(platform_Windows LANGUAGES C)
include_directories(
${PROJECT_SOURCE_DIR}/include
)
add_library(platform_Windows STATIC
src/platform.c
src/windebug.c
)
add_subdirectory("capture")
target_link_libraries(platform_Windows
capture
setupapi
)
target_include_directories(platform_Windows
PRIVATE
src
)