mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-12-24 01:35:24 +01:00
wscript: don't install import libraries
This commit is contained in:
parent
6b24b263ab
commit
b3c7dbe3e4
8
wscript
8
wscript
@ -2,7 +2,7 @@
|
|||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
# a1batross, mittorn, 2018
|
# a1batross, mittorn, 2018
|
||||||
|
|
||||||
from waflib import Build, Context, Logs
|
from waflib import Build, Context, Logs, TaskGen
|
||||||
from waflib.Tools import waf_unit_test, c_tests
|
from waflib.Tools import waf_unit_test, c_tests
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
@ -17,6 +17,12 @@ Context.Context.line_just = 55 # should fit for everything on 80x26
|
|||||||
c_tests.LARGE_FRAGMENT='''#include <unistd.h>
|
c_tests.LARGE_FRAGMENT='''#include <unistd.h>
|
||||||
int check[sizeof(off_t) >= 8 ? 1 : -1]; int main(void) { return 0; }'''
|
int check[sizeof(off_t) >= 8 ? 1 : -1]; int main(void) { return 0; }'''
|
||||||
|
|
||||||
|
@TaskGen.feature('cshlib', 'cxxshlib', 'fcshlib')
|
||||||
|
@TaskGen.before_method('apply_implib')
|
||||||
|
def remove_implib_install(self):
|
||||||
|
if not getattr(self, 'install_path_implib', None):
|
||||||
|
self.install_path_implib = None
|
||||||
|
|
||||||
class Subproject:
|
class Subproject:
|
||||||
def __init__(self, name, fnFilter = None):
|
def __init__(self, name, fnFilter = None):
|
||||||
self.name = name
|
self.name = name
|
||||||
|
Loading…
Reference in New Issue
Block a user