waf: fix install

This commit is contained in:
nillerusr
2021-04-06 23:22:52 +03:00
parent f0c72952c8
commit 597f9da3b0
48 changed files with 36 additions and 75 deletions
+1 -4
View File
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#! /usr/bin/env python
# encoding: utf-8
from waflib import Utils
@@ -52,8 +52,6 @@ def build(bld):
libs = []
install_path = bld.env.PREFIX
bld.stlib(
source = source,
target = PROJECT_NAME,
@@ -62,7 +60,6 @@ def build(bld):
includes = includes,
defines = defines,
use = libs,
install_path = install_path,
subsystem = bld.env.MSVC_SUBSYSTEM,
idx = bld.get_taskgen_count()
)