[c-host] renamed finall to just plain host

This commit is contained in:
Geoffrey McRae
2020-05-25 13:42:43 +10:00
parent d579705b10
commit bc7871f630
34 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
cmake_minimum_required(VERSION 3.0)
project(platform LANGUAGES C)
if (UNIX)
set(PLATFORM "Linux")
elseif(WIN32)
set(PLATFORM "Windows")
endif()
add_subdirectory(${PLATFORM})
add_library(platform INTERFACE)
target_link_libraries(platform INTERFACE platform_${PLATFORM})