From cd859d4ed2c1a9f6c4c08a58164e7eb0274b423f Mon Sep 17 00:00:00 2001 From: Gordon McCann <43148247+gwm17@users.noreply.github.com> Date: Wed, 1 Jun 2022 09:33:11 -0400 Subject: [PATCH] Removing premake5 relics --- premake5.lua | 114 --------------------------------------------------- 1 file changed, 114 deletions(-) delete mode 100644 premake5.lua diff --git a/premake5.lua b/premake5.lua deleted file mode 100644 index 7f2c372..0000000 --- a/premake5.lua +++ /dev/null @@ -1,114 +0,0 @@ -workspace "SabreCal" - architecture "x64" - configurations { - "Release", - "Debug" - } - -ROOTIncludeDir = "/usr/include/root/" -ROOTLibDir = "/usr/lib64/root/" - -project "CalDict" - kind "SharedLib" - language "C++" - cppdialect "c++11" - targetdir "./lib/" - objdir "./objs/" - - prebuildcommands { - "rootcint -f src/CalDict/cal_dict.cxx src/CalDict/DataStructs.h src/CalDict/LinkDef_CalDict.h", - "{COPY} src/CalDict/*.pcm ./lib/" - } - - postbuildcommands { - "{COPY} src/CalDict/DataStructs.h ./include/" - } - - files { - "src/CalDict/DataStructs.h", - "src/CalDict/*.cpp", - "src/CalDict/*.cxx" - } - - includedirs { - "./", - "src/CalDict", - } - - sysincludedirs { - ROOTIncludeDir - } - - libdirs { - ROOTLibDir - } - - links { - "Gui", "Core", "Imt", "RIO", "Net", "Hist", - "Graf", "Graf3d", "Gpad", "ROOTDataFrame", "ROOTVecOps", - "Tree", "TreePlayer", "Rint", "Postscript", "Matrix", - "Physics", "MathCore", "Thread", "MultiProc", "m", "dl" - } - - filter "system:macosx or linux" - linkoptions { - "-pthread", - "-rdynamic" - } - - filter "configurations:Debug" - symbols "On" - - filter "configurations:Release" - optimize "On" - -project "SabreCal" - kind "ConsoleApp" - language "C++" - cppdialect "c++11" - targetdir "./bin/" - objdir "./objs/" - - files { - "src/*.cpp", - "src/*.h", - "src/Detectors/*.cpp", - "src/Detectors/*.h", - "src/EnergyLoss/*.cpp", - "src/EnergyLoss/*.h", - "src/CalDict/*.h" - } - - includedirs { - "src/", - "src/CalDict", - "src/Detectors", - "src/EnergyLoss" - } - - sysincludedirs { - ROOTIncludeDir - } - - libdirs { - ROOTLibDir, - } - - links { - "CalDict", "Gui", "Core", "Imt", "RIO", "Net", "Hist", - "Graf", "Graf3d", "Gpad", "ROOTDataFrame", "ROOTVecOps", - "Tree", "TreePlayer", "Rint", "Postscript", "Matrix", - "Physics", "MathCore", "Thread", "MultiProc", "m", "dl" - } - - filter "system:macosx or linux" - linkoptions { - "-pthread", - "-rdynamic" - } - - filter "configurations:Debug" - symbols "On" - - filter "configurations:Release" - optimize "On" \ No newline at end of file