Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ build/CPack*Config.cmake

# VSCode files
.vscode
*.code-workspace

# ctags file
tags
Expand Down
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
cmake_minimum_required(VERSION 3.18 FATAL_ERROR)
cmake_policy(SET CMP0048 NEW)
cmake_policy(SET CMP0074 NEW)
set(CMAKE_INSTALL_MESSAGE "LAZY")

# set up versioning.
set(DF_VERSION "53.14")
Expand Down
1 change: 1 addition & 0 deletions build/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ _CPack_Packages
.cmake
win64-cross
dest
DF
4 changes: 4 additions & 0 deletions plugins/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ set_source_files_properties( Brushes.h PROPERTIES HEADER_FILE_ONLY TRUE )
# Plugins
# If you are adding a plugin that you do not intend to commit to the DFHack repo,
# see instructions for adding "external" plugins at the end of this file.
#
# CAVEAT: currently (June 2026) DFHack's core code will only autoload plugins from
# the hack/plugins directory. They cannot be autoloaded from mod directories.
# This has been explicit policy for several years.

# Example plugin that uses protobufs
# proto file must be in the proto/ folder
Expand Down
Loading