0% found this document useful (0 votes)
20 views1 page

CMake Lists

Esp

Uploaded by

janrexerang
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views1 page

CMake Lists

Esp

Uploaded by

janrexerang
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

cmake_minimum_required(VERSION 3.4.

1)

project("shizuku")

set(CMAKE_CXX_STANDARD 17)

set(C_FLAGS "-Werror=format -fdata-sections -ffunction-sections -fno-exceptions -


fno-rtti -fno-threadsafe-statics")
set(LINKER_FLAGS "-Wl,--hash-style=both")

if (NOT CMAKE_BUILD_TYPE STREQUAL "Debug")


message("Builing Release...")

set(C_FLAGS "${C_FLAGS} -O2 -fvisibility=hidden -fvisibility-inlines-hidden")


set(LINKER_FLAGS "${LINKER_FLAGS} -Wl,-exclude-libs,ALL -Wl,--gc-sections")
else()
message("Builing Debug...")

add_definitions(-DDEBUG)
endif ()

set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${C_FLAGS}")


set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${C_FLAGS}")

set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${LINKER_FLAGS}")


set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} ${LINKER_FLAGS}")

find_library(log-lib log)
find_package(boringssl REQUIRED CONFIG)
find_package(cxx REQUIRED CONFIG)

add_executable([Link]
[Link] [Link] [Link] [Link] [Link])

target_link_libraries([Link] ${log-lib} cxx::cxx)

if (NOT CMAKE_BUILD_TYPE STREQUAL "Debug")


add_custom_command(TARGET [Link] POST_BUILD
COMMAND ${CMAKE_STRIP} --remove-section=.comment "$
{CMAKE_LIBRARY_OUTPUT_DIRECTORY}/[Link]")
endif ()

add_library(adb SHARED
adb_pairing.cpp [Link])

target_link_libraries(adb ${log-lib} boringssl::crypto_static cxx::cxx)

if (NOT CMAKE_BUILD_TYPE STREQUAL "Debug")


add_custom_command(TARGET adb POST_BUILD
COMMAND ${CMAKE_STRIP} --remove-section=.comment "$
{CMAKE_LIBRARY_OUTPUT_DIRECTORY}/[Link]")
endif ()

You might also like