9 lines
168 B
Python
9 lines
168 B
Python
# dirs.py
|
|
# Eryn Wells <eryn@erynwells.me>
|
|
|
|
from SCons.Script import Dir
|
|
|
|
BUILD_DIR = Dir('#build')
|
|
LIB_DIR = Dir('#lib')
|
|
SRC_DIR = Dir('#src')
|
|
TEST_DIR = Dir('#test')
|