Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 481 Bytes

File metadata and controls

31 lines (21 loc) · 481 Bytes

Premake module to support the VSLinux extension for Visual Studio 2015.

Features

  • Support actions: vs2015

Usage

Simply add:

system "Linux"

to your project definition.

APIs

None yet.

Example

The contents of your premake5.lua file would be:

workspace "MyWorkspace"
    configurations { "Release", "Debug" }

    project "MyLinuxProject"
        kind "ConsoleApp"
        system "Linux"
        files { "src/main.cpp" }