* Linux folder has been renamed to Unix, to match defines and so that it compiles on OS X. * This removes the need for a per-platform include search path for the right OS folder
8 lines
159 B
CMake
8 lines
159 B
CMake
|
|
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
add_library(OSDependent STATIC ossource.cpp osinclude.h)
|
|
|
|
install(TARGETS OSDependent
|
|
ARCHIVE DESTINATION lib)
|