You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
32 lines
629 B
32 lines
629 B
workspace "winsock_test" |
|
architecture "x64" |
|
|
|
configurations |
|
{ |
|
"Debug", |
|
"Release" |
|
} |
|
|
|
-- startproject "winsock_test" |
|
|
|
outputdir = "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}" |
|
|
|
-- Include projects |
|
include "bakanet" |
|
include "sandbox/client" |
|
include "sandbox/server" |
|
|
|
newaction { |
|
trigger = "clean", |
|
description = "Clean the build", |
|
execute = function() |
|
print("Cleaning...") |
|
os.rmdir("./bin") |
|
os.rmdir("./bin-int") |
|
os.remove("**.sln") |
|
os.remove("**.vcxproj") |
|
os.remove("**.vcxproj.filters") |
|
print("Done.") |
|
end |
|
} |
|
|