1
mirror of https://github.com/rapid7/metasploit-payloads synced 2025-01-02 11:36:22 +01:00
metasploit-payloads/c/meterpreter/.gitignore
OJ 0e9a231e8a
First pass of CMake support (MSVC specific ATM)
This commit includes a bunch of changes that are working towards being
able to build the Meterpreter source from CMake. Changes include:

* Updated `make.bat` which does the stuff that we need.
* Removed a bunch of stuff from the python extension source tree so that
  CMake generator would not include them.
* Moved a few things around in the priv extension.
* Created `CMakeFileLists.txt` for all the projects.

There are a few hacks required in things like stdapi and kiwi to ignore
files that are on disk but shouldn't be included in the build.

Initial testing indicates that sessions run, extensions load, but some
things don't work as intended. It's a start! Still much to do.
2020-04-24 13:31:16 +10:00

56 lines
496 B
Plaintext

# Object files
*.o
# Libraries
*.lib
*.a
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.exe
*.out
*.app
tags
# project config output
r7_release
r7_debug
debug
release
Debug
Release
# temporary files
*.swp
# VS local dbs
*.sdf
*.opensdf
*.aps
# VS ipch
workspace/ipch/*
# VS upgrade junk
UpgradeLog.*
_UpgradeReport_Files
workspace/Backup/*
source/jpeg-8/Backup/*
# other VS garbage
*.suo
*.ncb
# Doxygen output
docs/*
# ignore CLion files
.idea/
build