libbpg-0.9.6
This commit is contained in:
parent
3035b41edf
commit
35a8402710
248 changed files with 232891 additions and 100 deletions
25
x265/source/profile/CMakeLists.txt
Normal file
25
x265/source/profile/CMakeLists.txt
Normal file
|
@ -0,0 +1,25 @@
|
|||
# vim: syntax=cmake
|
||||
|
||||
option(ENABLE_PPA "Enable PPA profiling instrumentation" OFF)
|
||||
if(ENABLE_PPA)
|
||||
add_definitions(-DENABLE_PPA)
|
||||
add_subdirectory(PPA)
|
||||
list(APPEND PLATFORM_LIBS PPA)
|
||||
if(UNIX)
|
||||
list(APPEND PLATFORM_LIBS dl)
|
||||
endif(UNIX)
|
||||
endif(ENABLE_PPA)
|
||||
|
||||
option(ENABLE_VTUNE "Enable Vtune profiling instrumentation" OFF)
|
||||
if(ENABLE_VTUNE)
|
||||
add_definitions(-DENABLE_VTUNE)
|
||||
add_subdirectory(vtune)
|
||||
list(APPEND PLATFORM_LIBS vtune)
|
||||
include_directories($ENV{VTUNE_AMPLIFIER_XE_2015_DIR}/include)
|
||||
link_directories($ENV{VTUNE_AMPLIFIER_XE_2015_DIR}/lib64)
|
||||
if(WIN32)
|
||||
list(APPEND PLATFORM_LIBS libittnotify.lib)
|
||||
else()
|
||||
list(APPEND PLATFORM_LIBS libittnotify.a dl)
|
||||
endif()
|
||||
endif(ENABLE_VTUNE)
|
Loading…
Add table
Add a link
Reference in a new issue