Skip to content
Snippets Groups Projects
Commit 7baf339a authored by Raman's avatar Raman
Browse files

Build XPNoLibs targets based on a touch file.

(Needs VS2019 Prefessional Edition v16.0.x)
parent 55302e3e
Branches
No related tags found
No related merge requests found
......@@ -56,15 +56,25 @@ def getDependencies(depBranch):
def buildTSKAll():
TSK_HOME = os.getenv("TSK_HOME", False)
if not TSK_HOME:
print("Please set the TSK_HOME environment variable")
sys.exit(1)
if not MINIMAL:
if(passed):
buildTSK(32, "Release")
if(passed):
buildTSK(64, "Release_NoLibs")
# MINIMAL is 64-bit for Autopsy and 32-bit with no deps for logical imager et al.
if(passed):
buildTSK(32, "Release_NoLibs")
if(passed):
BuildXPNoLibsFilePath = os.path.join(TSK_HOME, "build_xpnolibs")
if os.path.exists(BuildXPNoLibsFilePath):
buildTSK(32, "Release_XPNoLibs")
if(passed):
buildTSK(64, "Release")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment