From c60b3a96cf9bfedbfc402a50e0b85f22d231d67b Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Wed, 16 Oct 2024 19:41:27 -0600 Subject: wip lib9o --- lib9o/CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lib9o/CMakeLists.txt (limited to 'lib9o/CMakeLists.txt') diff --git a/lib9o/CMakeLists.txt b/lib9o/CMakeLists.txt new file mode 100644 index 0000000..815ea57 --- /dev/null +++ b/lib9o/CMakeLists.txt @@ -0,0 +1,8 @@ +# lib9o/CMakeLists.txt - A simple Go-ish object system built on GCC -fplan9-extensions +# +# Copyright (C) 2024 Luke T. Shumaker +# SPDX-Licence-Identifier: AGPL-3.0-or-later + +add_library(lib9o INTERFACE) +target_include_directories(lib9o SYSTEM INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/include) +target_compile_options(lib9o PUBLIC "-fplan9-extension") -- cgit v1.2.3-2-g168b