1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-02-15 02:11:38 +00:00
conky/config_msvc.py
Brenden Matthews 4fc4128ffa Squashed '3rdparty/toluapp/' content from commit 2e0e8533
git-subtree-dir: 3rdparty/toluapp
git-subtree-split: 2e0e8533a56405df26ebf15735cb8b81f23d0990
2018-12-20 20:48:35 -05:00

29 lines
773 B
Python

## This is the MSVC configuration file
# use 'scons -h' to see the list of command line options available
# flags for the compiler
CCFLAGS = ['/nologo']
# this is the default directory for installation. Files will be installed on
# <prefix>/bin, <prefix>/lib and <prefix>/include when you run 'scons install'
#
# You can also specify this directory on the command line with the 'prefix'
# option
#
# If you leave it as 'None', we'll try to auto-detect it (as 'PLATFORMSDKDIR'
# detected by SCons).
prefix = None # (it's a string)
# the libraries
LIBS = ['lua', 'lualib']
# linkflags
LINKFLAGS = ['/nologo']
## We need to specifiy the environment for the PATH and LIB and all those
# parameters cl tales from it
import os
ENV = os.environ