Initial commit

This commit is contained in:
matt
2020-09-20 12:16:44 +00:00
parent 09a4460ddb
commit 408c005d3e
839 changed files with 190481 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
include_directories(${CMAKE_SOURCE_DIR}/common)
include_directories(${CMAKE_SOURCE_DIR}/unix/common)
add_library(unixcommon STATIC
randr.cxx)
if(UNIX)
libtool_create_control_file(unixcommon)
endif()
if(NOT WIN32)
set_target_properties(unixcommon
PROPERTIES COMPILE_FLAGS -fPIC)
endif()