Skip to content
Snippets Groups Projects
Commit 28a8c6c6 authored by deuce's avatar deuce
Browse files

Add CIOXtrn project to Win32 builds.

parent 5d67ca90
No related branches found
No related tags found
No related merge requests found
...@@ -4,6 +4,9 @@ cmake_minimum_required(VERSION 2.8.11) ...@@ -4,6 +4,9 @@ cmake_minimum_required(VERSION 2.8.11)
if(NOT PROJECTS) if(NOT PROJECTS)
SET(PROJECTS SyncTERM;SyncDraw CACHE STRING "Choose the projects to build, options are: SyncTERM" FORCE) SET(PROJECTS SyncTERM;SyncDraw CACHE STRING "Choose the projects to build, options are: SyncTERM" FORCE)
if(WIN32)
list(APPEND PROJECTS CIOXtrn)
endif()
endif() endif()
list(FIND PROJECTS SyncTERM BUILD_SYNCTERM) list(FIND PROJECTS SyncTERM BUILD_SYNCTERM)
...@@ -40,3 +43,18 @@ if(BUILD_SYNCDRAW GREATER -1) ...@@ -40,3 +43,18 @@ if(BUILD_SYNCDRAW GREATER -1)
endif() endif()
add_subdirectory(syncdraw) add_subdirectory(syncdraw)
endif() endif()
list(FIND PROJECTS CIOXtrn BUILD_CIOXTRN)
if(BUILD_CIOXTRN GREATER -1)
if(NOT XPDEV_ADDED)
include_directories(xpdev)
add_subdirectory(xpdev)
set(XPDEV_ADDED TRUE)
endif()
if(NOT CONIO_ADDED)
include_directories(conio)
add_subdirectory(conio)
set(CONIO_ADDED TRUE)
endif()
add_subdirectory(cioxtrn)
endif()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment