iccy
Results
2
comments of
iccy
@stephenafamo hi, did you solve this problem?
他说的可能是这种情况: ```lua -- xmake.lua target('foo', function() set_kind('object') add_files('foo.c') before_build(function(T) io.writefile( 'foo.c', [[ void foo() {} ]] ) end) end) target('shared', function() set_kind('shared') add_deps('foo') end) target('add_deps', function() set_kind('binary') add_files('main.c') add_deps('shared') before_build(function(T)...