Skip to content

Commit

Permalink
Add 'Package' project type
Browse files Browse the repository at this point in the history
  • Loading branch information
IreNox committed Nov 8, 2020
1 parent a7655fa commit 3efa568
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/base/project.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ ProjectTypes = {
ConsoleApplication = "ConsoleApp",
WindowApplication = "WindowedApp",
SharedLibrary = "SharedLib",
StaticLibrary = "StaticLib"
StaticLibrary = "StaticLib",
Package = "Packaging"
}

Project = class{
Expand Down Expand Up @@ -100,7 +101,7 @@ function Project:add_external( url )
end

function Project:add_project_dependency( project )
if table.contains( self.dependencies, ptoject ) then
if table.contains( self.dependencies, project ) then
return
end

Expand Down

0 comments on commit 3efa568

Please sign in to comment.