Commit bd0726be by John Kessenich

Build: Fix CMake files to find osinclude.h

parent e54dd233
......@@ -2,7 +2,7 @@
cmake_minimum_required(VERSION 2.8)
add_library(OSDependent STATIC ossource.cpp osinclude.h)
add_library(OSDependent STATIC ossource.cpp ../osinclude.h)
install(TARGETS OSDependent
ARCHIVE DESTINATION lib)
cmake_minimum_required(VERSION 2.8)
set(SOURCES ossource.cpp osinclude.h)
set(SOURCES ossource.cpp ../osinclude.h)
add_library(OSDependent STATIC ${SOURCES})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment