diff options
author | Petr Mrázek <peterix@gmail.com> | 2021-02-06 15:58:03 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2021-02-06 15:58:03 +0100 |
commit | 1868e0ccf1beba675736c1d2c47579854110241e (patch) | |
tree | 125e38230b4708c2d0cf93ca52ab5caaf2be947f /libraries/optional-bare/CMakeLists.txt | |
parent | f8ca96a335acc6d37a2d41e44c2104255bce5e30 (diff) | |
download | PrismLauncher-1868e0ccf1beba675736c1d2c47579854110241e.tar.gz PrismLauncher-1868e0ccf1beba675736c1d2c47579854110241e.tar.bz2 PrismLauncher-1868e0ccf1beba675736c1d2c47579854110241e.zip |
GH-3229 fix copy seed button not working for newer worlds
Added the `optional-bare` library and refactored NBT reading
code to support this change.
Diffstat (limited to 'libraries/optional-bare/CMakeLists.txt')
-rw-r--r-- | libraries/optional-bare/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libraries/optional-bare/CMakeLists.txt b/libraries/optional-bare/CMakeLists.txt new file mode 100644 index 00000000..b8b498c5 --- /dev/null +++ b/libraries/optional-bare/CMakeLists.txt @@ -0,0 +1,5 @@ +cmake_minimum_required(VERSION 3.1) +project(optional-bare) + +add_library(optional-bare INTERFACE) +target_include_directories(optional-bare INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/include") |