X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=src%2Ftype3_AndroidCloud%2Fanbox-master%2Fexternal%2Fprocess-cpp-minimal%2Fsrc%2FCMakeLists.txt;fp=src%2Ftype3_AndroidCloud%2Fanbox-master%2Fexternal%2Fprocess-cpp-minimal%2Fsrc%2FCMakeLists.txt;h=dec4659e86f1b213d442e58586d37c1f9a5d2cd4;hb=e26c1ec581be598521517829adba8c8dd23a768f;hp=0000000000000000000000000000000000000000;hpb=6699c1aea74eeb0eb400e6299079f0c7576f716f;p=iec.git diff --git a/src/type3_AndroidCloud/anbox-master/external/process-cpp-minimal/src/CMakeLists.txt b/src/type3_AndroidCloud/anbox-master/external/process-cpp-minimal/src/CMakeLists.txt new file mode 100644 index 0000000..dec4659 --- /dev/null +++ b/src/type3_AndroidCloud/anbox-master/external/process-cpp-minimal/src/CMakeLists.txt @@ -0,0 +1,49 @@ +# Copyright © 2013 Canonical Ltd. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 3 as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +# Authored by: Thomas Voss +add_library( + process-cpp + + STATIC + + core/posix/backtrace.h + core/posix/backtrace.cpp + + core/posix/child_process.cpp + core/posix/exec.cpp + core/posix/fork.cpp + core/posix/process.cpp + core/posix/process_group.cpp + core/posix/signal.cpp + core/posix/signalable.cpp + core/posix/standard_stream.cpp + core/posix/wait.cpp + core/posix/this_process.cpp + + core/posix/linux/proc/process/oom_adj.cpp + core/posix/linux/proc/process/oom_score.cpp + core/posix/linux/proc/process/oom_score_adj.cpp + core/posix/linux/proc/process/stat.cpp + + core/testing/cross_process_sync.cpp + core/testing/fork_and_run.cpp +) + +target_link_libraries( + process-cpp + + ${Boost_LIBRARIES} + ${CMAKE_THREAD_LIBS_INIT} +)