diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | icd/common/CMakeLists.txt | 8 |
2 files changed, 2 insertions, 7 deletions
@@ -6,6 +6,7 @@ __pycache__ XGLConfig.h *.so *.so.* +icd/common/libicd.a loader/dispatch.c tests/xgl_image_tests tests/xgl_render_tests diff --git a/icd/common/CMakeLists.txt b/icd/common/CMakeLists.txt index 3eb6752a..b9700d9d 100644 --- a/icd/common/CMakeLists.txt +++ b/icd/common/CMakeLists.txt @@ -13,15 +13,9 @@ endif() pkg_check_modules(ICD REQUIRED ${ICD_REQUIRED_MODULES}) -# icd-dispatch-table.h was generated in ${CMAKE_CURRENT_BINARY_DIR} -set(ICD_INCLUDE_DIRS - ${ICD_INCLUDE_DIRS} - ${CMAKE_CURRENT_BINARY_DIR} - CACHE INTERNAL "") - include_directories( ${ICD_INCLUDE_DIRS} ) -add_library(icd OBJECT ${ICD_SOURCES}) +add_library(icd STATIC ${ICD_SOURCES}) set_target_properties(icd PROPERTIES POSITION_INDEPENDENT_CODE ON) |
