aboutsummaryrefslogtreecommitdiff
path: root/src/frontend_common/CMakeLists.txt
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-11-24 22:59:55 -0500
committerGitHub <noreply@github.com>2023-11-24 22:59:55 -0500
commit5a182f4e7ccfac696cd54542089c880d002f5cc9 (patch)
treee1bcd72f38f4f57ff6b915022268b0feb86a7937 /src/frontend_common/CMakeLists.txt
parent093eb075a686d3584f59b129a200c2652a5cdb10 (diff)
parentdda187d300de379abc4f4e17b5fd73a4eed8d956 (diff)
Merge pull request #11889 from t895/ini-lib
configuration: Unify config handling across frontends
Diffstat (limited to 'src/frontend_common/CMakeLists.txt')
-rw-r--r--src/frontend_common/CMakeLists.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/frontend_common/CMakeLists.txt b/src/frontend_common/CMakeLists.txt
new file mode 100644
index 000000000..1537271fc
--- /dev/null
+++ b/src/frontend_common/CMakeLists.txt
@@ -0,0 +1,10 @@
+# SPDX-FileCopyrightText: 2023 yuzu Emulator Project
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+add_library(frontend_common STATIC
+ config.cpp
+ config.h
+)
+
+create_target_directory_groups(frontend_common)
+target_link_libraries(frontend_common PUBLIC core SimpleIni PRIVATE common Boost::headers)