Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: oneapi-src/oneDNN
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: gitaugakwa/oneDNN
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Feb 28, 2022

  1. Add premake5.lua

    gitaugakwa authored Feb 28, 2022
    Copy the full SHA
    0587346 View commit details
  2. Update premake5.lua

    gitaugakwa authored Feb 28, 2022
    Copy the full SHA
    9f64a85 View commit details
Showing with 44 additions and 0 deletions.
  1. +44 −0 premake5.lua
44 changes: 44 additions & 0 deletions premake5.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
project "oneDNN"
kind "StaticLib"
language "C++"

targetdir ("bin/" .. outputdir .. "/%{prj.name}")
objdir ("bin-int/" .. outputdir .. "/%{prj.name}")

files
{
"include/**",
"src/**"
}

includedirs
{
"include"
}

filter "system:linux"
pic "On"

systemversion "latest"
staticruntime "On"

defines
{
}

filter "system:windows"
systemversion "latest"
staticruntime "On"

defines
{
"_CRT_SECURE_NO_WARNINGS"
}

filter "configurations:Debug"
runtime "Debug"
symbols "on"

filter "configurations:Release"
runtime "Release"
optimize "on"