21 lines
661 B
C#
21 lines
661 B
C#
###############################################################################
|
|
# Copyright (c) Lewis Baker
|
|
# Licenced under MIT license. See LICENSE.txt for details.
|
|
###############################################################################
|
|
|
|
import cake.path
|
|
|
|
from cake.tools import script, env, compiler, variant
|
|
|
|
compiler.addIncludePath(env.expand('${CPPCORO}/include'))
|
|
|
|
buildScript = script.get(script.cwd('build.cake'))
|
|
compiler.addLibrary(buildScript.getResult('library'))
|
|
|
|
if variant.platform == "windows":
|
|
compiler.addLibrary("Synchronization")
|
|
compiler.addLibrary("kernel32")
|
|
compiler.addLibrary("WS2_32")
|
|
compiler.addLibrary("Mswsock")
|
|
|