forked from MilosSubotic/LPRS2_2023
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwscript
More file actions
30 lines (20 loc) · 638 Bytes
/
wscript
File metadata and controls
30 lines (20 loc) · 638 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
'''
@author: Milos Subotic <milos.subotic.sm@gmail.com>
@license: MIT
@brief: Waf script just for distclean and dist commands.
'''
###############################################################################
import os
import sys
sys.path.append('./Common/Scripts')
import common_waf
###############################################################################
APPNAME = os.path.basename(os.getcwd())
top = '.'
def distclean(ctx):
common_waf.distclean(ctx)
def dist(ctx):
common_waf.dist(ctx)
###############################################################################