You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
727 B
Python
22 lines
727 B
Python
3 years ago
|
|
||
|
from find_toolchain import *
|
||
|
|
||
|
def printBuildTarget(name, filters):
|
||
|
tn = FindToolchainEx(filters)
|
||
|
if tn:
|
||
|
tc = NeLToolchains[tn]
|
||
|
print(" " + name + ": " + tc["DisplayName"] + " (" + tc["Generator"] + ", " + tc["Toolset"] + ", " + tc["Platform"] + ")")
|
||
|
else:
|
||
|
print(" " + name + ": NOT FOUND")
|
||
|
|
||
|
print("Build targets:")
|
||
|
printBuildTarget("client_dev", NeLToolchainNative)
|
||
|
printBuildTarget("server_dev", NeLToolchainNative)
|
||
|
for client in NeLConfig["Toolchain"]["Client"]:
|
||
|
printBuildTarget(client, NeLConfig["Toolchain"]["Client"][client])
|
||
|
printBuildTarget("server", NeLConfig["Toolchain"]["Server"])
|
||
|
printBuildTarget("tools", NeLToolchainNative)
|
||
|
printBuildTarget("samples", NeLToolchainNative)
|
||
|
# plugin_max
|
||
|
|
||
|
# end of file
|