| OLD | NEW |
| 1 # Boilerplate. | 1 # Boilerplate. |
| 2 cmake_minimum_required (VERSION 3.1) # First version with CMAKE_CXX_STANDARD. | 2 cmake_minimum_required (VERSION 3.1) # First version with CMAKE_CXX_STANDARD. |
| 3 project (skimake) | 3 project (skimake) |
| 4 set (CMAKE_CXX_STANDARD 11) | 4 set (CMAKE_CXX_STANDARD 11) |
| 5 | 5 |
| 6 # Default to Release mode. We're mainly targeting Skia users, not Skia develope
rs. | 6 # Default to Release mode. We're mainly targeting Skia users, not Skia develope
rs. |
| 7 if (NOT CMAKE_BUILD_TYPE) | 7 if (NOT CMAKE_BUILD_TYPE) |
| 8 set (CMAKE_BUILD_TYPE Release) | 8 set (CMAKE_BUILD_TYPE Release) |
| 9 endif () | 9 endif () |
| 10 | 10 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 if(SKIA_GDI) | 107 if(SKIA_GDI) |
| 108 remove_srcs(../src/ports/SkFontMgr_win_dw_factory.cpp) | 108 remove_srcs(../src/ports/SkFontMgr_win_dw_factory.cpp) |
| 109 else() | 109 else() |
| 110 remove_srcs(../src/ports/SkFontMgr_win_gdi_factory.cpp) | 110 remove_srcs(../src/ports/SkFontMgr_win_gdi_factory.cpp) |
| 111 endif() | 111 endif() |
| 112 endif() | 112 endif() |
| 113 | 113 |
| 114 remove_srcs(../src/gpu/gl/angle/*) # TODO | 114 remove_srcs(../src/gpu/gl/angle/*) # TODO |
| 115 remove_srcs(../src/codec/* ../src/android/*) # TODO: Requires Chromium's libjpe
g-turbo, and incompatible giflib. | 115 remove_srcs(../src/codec/* ../src/android/*) # TODO: Requires Chromium's libjpe
g-turbo, and incompatible giflib. |
| 116 | 116 |
| 117 # Certain files must be compiled with support for SSSE3 or SSE4.1 intrinsics. | 117 # Certain files must be compiled with support for SSSE3, SSE4.1, AVX, or AVX2 in
trinsics. |
| 118 file (GLOB_RECURSE ssse3_srcs ../src/*ssse3*.cpp ../src/*SSSE3*.cpp) | 118 file (GLOB_RECURSE ssse3_srcs ../src/*ssse3*.cpp ../src/*SSSE3*.cpp) |
| 119 file (GLOB_RECURSE sse41_srcs ../src/*sse4*.cpp ../src/*SSE4*.cpp) | 119 file (GLOB_RECURSE sse41_srcs ../src/*sse4*.cpp ../src/*SSE4*.cpp) |
| 120 file (GLOB_RECURSE avx_srcs ../src/*_avx.cpp) |
| 121 file (GLOB_RECURSE avx2_srcs ../src/*_avx2.cpp) |
| 120 set_source_files_properties(${ssse3_srcs} PROPERTIES COMPILE_FLAGS -mssse3) | 122 set_source_files_properties(${ssse3_srcs} PROPERTIES COMPILE_FLAGS -mssse3) |
| 121 set_source_files_properties(${sse41_srcs} PROPERTIES COMPILE_FLAGS -msse4.1) | 123 set_source_files_properties(${sse41_srcs} PROPERTIES COMPILE_FLAGS -msse4.1) |
| 124 set_source_files_properties(${avx_srcs} PROPERTIES COMPILE_FLAGS -mavx) |
| 125 set_source_files_properties(${avx2_srcs} PROPERTIES COMPILE_FLAGS -mavx2) |
| 122 | 126 |
| 123 # Detect our optional dependencies. | 127 # Detect our optional dependencies. |
| 124 # If we can't find them, don't build the parts of Skia that use them. | 128 # If we can't find them, don't build the parts of Skia that use them. |
| 125 find_package (EXPAT) | 129 find_package (EXPAT) |
| 126 find_package (Lua) | 130 find_package (Lua) |
| 127 find_package (ZLIB) | 131 find_package (ZLIB) |
| 128 # No find_package for libwebp as far as I can tell, so simulate it here. | 132 # No find_package for libwebp as far as I can tell, so simulate it here. |
| 129 find_path (WEBP_INCLUDE_DIRS "webp/decode.h") | 133 find_path (WEBP_INCLUDE_DIRS "webp/decode.h") |
| 130 find_library (WEBP_LIBRARIES webp) | 134 find_library (WEBP_LIBRARIES webp) |
| 131 find_path (OSMESA_INCLUDE_DIRS "GL/osmesa.h") | 135 find_path (OSMESA_INCLUDE_DIRS "GL/osmesa.h") |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 file (APPEND ${skia_h_path} "#include \"${filename_component}\"\n") | 313 file (APPEND ${skia_h_path} "#include \"${filename_component}\"\n") |
| 310 endif () | 314 endif () |
| 311 endforeach() | 315 endforeach() |
| 312 endif() | 316 endif() |
| 313 endforeach() | 317 endforeach() |
| 314 file(APPEND ${skia_h_path} "\n#endif // skia_DEFINED\n") | 318 file(APPEND ${skia_h_path} "\n#endif // skia_DEFINED\n") |
| 315 | 319 |
| 316 # Now build a simple example app that uses Skia via libskia.so. | 320 # Now build a simple example app that uses Skia via libskia.so. |
| 317 add_executable(example example.cpp) | 321 add_executable(example example.cpp) |
| 318 target_link_libraries(example skia ${OPENGL_LIBRARIES}) | 322 target_link_libraries(example skia ${OPENGL_LIBRARIES}) |
| OLD | NEW |