yuzu/src/common/CMakeLists.txt

103 lines
3 KiB
CMake
Raw Normal View History

# Generate cpp with Git revision from template
# Also if this is a CI build, add the build name (ie: Nightly, Bleeding Edge) to the scm_rev file as well
set(REPO_NAME "")
if ($ENV{CI})
if ($ENV{TRAVIS})
set(BUILD_REPOSITORY $ENV{TRAVIS_REPO_SLUG})
elseif($ENV{APPVEYOR})
set(BUILD_REPOSITORY $ENV{APPVEYOR_REPO_NAME})
endif()
# regex capture the string nightly or bleeding-edge into CMAKE_MATCH_1
2018-01-13 23:49:16 +00:00
string(REGEX MATCH "yuzu-emu/yuzu-?(.*)" OUTVAR ${BUILD_REPOSITORY})
if (${CMAKE_MATCH_COUNT} GREATER 0)
# capitalize the first letter of each word in the repo name.
string(REPLACE "-" ";" REPO_NAME_LIST ${CMAKE_MATCH_1})
foreach(WORD ${REPO_NAME_LIST})
string(SUBSTRING ${WORD} 0 1 FIRST_LETTER)
string(SUBSTRING ${WORD} 1 -1 REMAINDER)
string(TOUPPER ${FIRST_LETTER} FIRST_LETTER)
# this leaves a trailing space on the last word, but we actually want that
# because of how its styled in the title bar.
set(REPO_NAME "${REPO_NAME}${FIRST_LETTER}${REMAINDER} ")
endforeach()
endif()
endif()
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/scm_rev.cpp.in" "${CMAKE_CURRENT_SOURCE_DIR}/scm_rev.cpp" @ONLY)
set(SRCS
break_points.cpp
2014-04-10 04:09:05 +01:00
file_util.cpp
hash.cpp
logging/filter.cpp
2014-10-28 07:36:00 +00:00
logging/text_formatter.cpp
logging/backend.cpp
2014-04-10 04:09:05 +01:00
memory_util.cpp
microprofile.cpp
2014-04-10 04:09:05 +01:00
misc.cpp
2017-01-20 19:30:11 +00:00
param_package.cpp
scm_rev.cpp
string_util.cpp
telemetry.cpp
2014-04-10 04:09:05 +01:00
thread.cpp
timer.cpp
)
2013-08-30 04:35:09 +01:00
set(HEADERS
2016-03-11 15:15:36 +00:00
alignment.h
assert.h
2014-05-17 07:39:27 +01:00
bit_field.h
2015-08-26 08:11:07 +01:00
bit_set.h
2014-04-29 03:40:39 +01:00
break_points.h
chunk_file.h
code_block.h
color.h
2014-04-29 03:40:39 +01:00
common_funcs.h
common_paths.h
common_types.h
file_util.h
hash.h
2014-04-29 03:40:39 +01:00
linear_disk_cache.h
2014-10-28 07:36:00 +00:00
logging/text_formatter.h
logging/filter.h
2014-10-28 07:36:00 +00:00
logging/log.h
logging/backend.h
2014-04-29 03:40:39 +01:00
math_util.h
memory_util.h
microprofile.h
microprofileui.h
2017-01-20 19:30:11 +00:00
param_package.h
2014-04-29 03:40:39 +01:00
platform.h
2016-12-11 21:32:01 +00:00
quaternion.h
2014-05-01 04:12:01 +01:00
scm_rev.h
scope_exit.h
2014-04-29 03:40:39 +01:00
string_util.h
swap.h
synchronized_wrapper.h
telemetry.h
2014-04-29 03:40:39 +01:00
thread.h
thread_queue_list.h
threadsafe_queue.h
2014-04-29 03:40:39 +01:00
timer.h
vector_math.h
)
if(ARCHITECTURE_x86_64)
set(SRCS ${SRCS}
x64/cpu_detect.cpp
)
set(HEADERS ${HEADERS}
x64/cpu_detect.h
x64/xbyak_abi.h
x64/xbyak_util.h
)
endif()
create_directory_groups(${SRCS} ${HEADERS})
2014-04-29 03:40:39 +01:00
add_library(common STATIC ${SRCS} ${HEADERS})
target_link_libraries(common PUBLIC Boost::boost microprofile)
if (ARCHITECTURE_x86_64)
target_link_libraries(common PRIVATE xbyak)
endif()