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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
|
--!A cross-platform build utility based on Lua
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file cmakelists.lua
--
-- imports
import("core.base.colors")
import("core.project.project")
import("core.project.config")
import("core.tool.compiler")
import("core.base.semver")
import("core.base.hashset")
import("core.project.rule")
import("lib.detect.find_tool")
import("private.utils.batchcmds")
-- get minimal cmake version
function _get_cmake_minver()
local cmake_minver = _g.cmake_minver
if not cmake_minver then
local cmake = find_tool("cmake", {version = true})
if cmake and cmake.version then
cmake_minver = semver.new(cmake.version)
end
if not cmake_minver or cmake_minver:gt("3.15.0") then
cmake_minver = semver.new("3.15.0")
end
_g.cmake_minver = cmake_minver
end
return cmake_minver
end
-- tranlate path
function _translate_path(filepath, outputdir)
filepath = path.translate(filepath)
if filepath == "" then
return ""
end
if path.is_absolute(filepath) then
if filepath:startswith(project.directory()) then
return path.relative(filepath, outputdir)
end
return filepath
else
return path.relative(path.absolute(filepath), outputdir)
end
end
-- escape path
function _escape_path(filepath)
if is_host("windows") then
filepath = filepath:gsub('\\', '/')
end
return filepath
end
-- escape path in flag
-- @see https://github.com/xmake-io/xmake/issues/3161
function _escape_path_in_flag(target, flag)
if is_host("windows") and target:has_tool("cc", "cl") then
-- e.g. /ManifestInput:xx, /def:xxx
if flag:find(":", 1, true) then
flag = _escape_path(flag)
end
end
return flag
end
-- get relative unix path
function _get_relative_unix_path(filepath, outputdir)
filepath = _translate_path(filepath, outputdir)
filepath = _escape_path(path.translate(filepath))
return os.args(filepath)
end
-- get relative unix path to the cmake path
-- @see https://github.com/xmake-io/xmake/issues/2026
function _get_relative_unix_path_to_cmake(filepath, outputdir)
filepath = _translate_path(filepath, outputdir)
filepath = path.translate(filepath):gsub('\\', '/')
if filepath and not path.is_absolute(filepath) then
filepath = "${CMAKE_SOURCE_DIR}/" .. filepath
end
return os.args(filepath)
end
-- get enabled languages from targets
function _get_project_languages(targets)
local languages = {}
for _, target in table.orderpairs(targets) do
for _, sourcekind in ipairs(target:sourcekinds()) do
if sourcekind == "cc" then table.insert(languages, "C")
elseif sourcekind == "cxx" then table.insert(languages, "CXX")
elseif sourcekind == "as" then table.insert(languages, "ASM")
elseif sourcekind == "cu" then table.insert(languages, "CUDA")
end
end
end
languages = table.unique(languages)
return languages
end
-- get configs from target
function _get_configs_from_target(target, name)
local values = {}
if name:find("flags", 1, true) then
table.join2(values, target:toolconfig(name))
end
table.join2(values, target:get(name))
table.join2(values, target:get_from_opts(name))
table.join2(values, target:get_from_pkgs(name))
table.join2(values, target:get_from_deps(name, {interface = true}))
if not name:find("flags", 1, true) then -- for includedirs, links ..
table.join2(values, target:toolconfig(name))
end
return table.unique(values)
end
-- this sourcebatch is built?
function _sourcebatch_is_built(sourcebatch)
-- we can only use rulename to filter them because sourcekind may be bound to multiple rules
local rulename = sourcebatch.rulename
if rulename == "c.build" or rulename == "c++.build"
or rulename == "asm.build" or rulename == "cuda.build"
or rulename == "objc.build" or rulename == "objc++.build" then
return true
end
end
-- translate flag
function _translate_flag(flag, outputdir)
if flag then
if path.instance_of(flag) then
flag = flag:clone():set(_get_relative_unix_path_to_cmake(flag:rawstr(), outputdir)):str()
elseif path.is_absolute(flag) then
flag = _get_relative_unix_path_to_cmake(flag, outputdir)
elseif flag:startswith("-fmodule-file=") then
flag = "-fmodule-file=" .. _get_relative_unix_path_to_cmake(flag:sub(15), outputdir)
elseif flag:startswith("-fmodule-mapper=") then
flag = "-fmodule-mapper=" .. _get_relative_unix_path_to_cmake(flag:sub(17), outputdir)
elseif flag:match("(.+)=(.+)") then
local k, v = flag:match("(.+)=(.+)")
if v and v:endswith(".ifc") then -- e.g. hello=xxx/hello.ifc
flag = k .. "=" .. _get_relative_unix_path_to_cmake(v, outputdir)
end
end
end
return flag
end
-- translate flags
function _translate_flags(flags, outputdir)
if not flags then
return
end
local result = {}
for _, flag in ipairs(flags) do
if type(flag) == "table" and not path.instance_of(flag) then
for _, v in ipairs(flag) do
table.insert(result, _translate_flag(v, outputdir))
end
else
table.insert(result, _translate_flag(flag, outputdir))
end
end
return result
end
-- get flags from fileconfig
function _get_flags_from_fileconfig(fileconfig, outputdir, name)
local flags = {}
table.join2(flags, fileconfig[name])
if fileconfig.force then
table.join2(flags, fileconfig.force[name])
end
flags = _translate_flags(flags, outputdir)
if #flags > 0 then
return flags
end
end
-- add project info
function _add_project(cmakelists, languages, outputdir)
local cmake_version = _get_cmake_minver()
cmakelists:print([[# this is the build file for project %s
# it is autogenerated by the xmake build system.
# do not edit by hand.
]], project.name() or "")
cmakelists:print("# project")
cmakelists:print("cmake_minimum_required(VERSION %s)", cmake_version)
if cmake_version:ge("3.15.0") then
-- for MSVC_RUNTIME_LIBRARY
cmakelists:print("cmake_policy(SET CMP0091 NEW)")
end
local project_name = project.name()
if not project_name then
for _, target in table.orderpairs(project.targets()) do
project_name = target:name()
break
end
end
if project_name then
local project_info = ""
local project_version = project.version()
if project_version then
project_info = project_info .. " VERSION " .. project_version
end
if languages then
cmakelists:print("project(%s%s LANGUAGES %s)", project_name, project_info, table.concat(languages, " "))
else
cmakelists:print("project(%s%s)", project_name, project_info)
end
end
cmakelists:print("")
end
-- add target: phony
function _add_target_phony(cmakelists, target)
-- https://github.com/xmake-io/xmake/issues/2337
target:data_set("plugin.project.kind", "cmakelist")
cmakelists:printf("add_custom_target(%s", target:name())
local deps = target:get("deps")
if deps then
cmakelists:write(" DEPENDS")
for _, dep in ipairs(deps) do
cmakelists:write(" " .. dep)
end
end
cmakelists:print(")")
cmakelists:print("")
end
-- set compiler
function _set_target_compiler(cmakelists, target)
-- use custom toolchain?
if config.get("toolchain") or target:get("toolchains") then
local cc = target:tool("cc")
if cc then
cc = cc:gsub("\\", "/")
cmakelists:print("set(CMAKE_C_COMPILER \"%s\")", cc)
end
local cxx, cxx_name = target:tool("cxx")
if cxx then
if cxx_name == "clang" or cxx_name == "gcc" then
local dir = path.directory(cxx)
local name = path.filename(cxx)
name = name:gsub("clang$", "clang++")
name = name:gsub("clang%-", "clang++-")
name = name:gsub("gcc$", "g++")
name = name:gsub("gcc%-", "g++-")
if dir ~= '.' then
cxx = path.join(dir, name)
else
cxx = name
end
end
cxx = cxx:gsub("\\", "/")
cmakelists:print("set(CMAKE_CXX_COMPILER \"%s\")", cxx)
end
end
end
-- add target: binary
function _add_target_binary(cmakelists, target, outputdir)
_set_target_compiler(cmakelists, target)
cmakelists:print("add_executable(%s \"\")", target:name())
cmakelists:print("set_target_properties(%s PROPERTIES OUTPUT_NAME \"%s\")", target:name(), target:basename())
cmakelists:print("set_target_properties(%s PROPERTIES RUNTIME_OUTPUT_DIRECTORY \"%s\")", target:name(), _get_relative_unix_path_to_cmake(target:targetdir(), outputdir))
end
-- add target: static
function _add_target_static(cmakelists, target, outputdir)
_set_target_compiler(cmakelists, target)
cmakelists:print("add_library(%s STATIC \"\")", target:name())
cmakelists:print("set_target_properties(%s PROPERTIES OUTPUT_NAME \"%s\")", target:name(), target:basename())
cmakelists:print("set_target_properties(%s PROPERTIES ARCHIVE_OUTPUT_DIRECTORY \"%s\")", target:name(), _get_relative_unix_path_to_cmake(target:targetdir(), outputdir))
end
-- add target: shared
function _add_target_shared(cmakelists, target, outputdir)
_set_target_compiler(cmakelists, target)
cmakelists:print("add_library(%s SHARED \"\")", target:name())
cmakelists:print("set_target_properties(%s PROPERTIES OUTPUT_NAME \"%s\")", target:name(), target:basename())
if target:is_plat("windows") then
-- @see https://github.com/xmake-io/xmake/issues/2192
cmakelists:print("set_target_properties(%s PROPERTIES RUNTIME_OUTPUT_DIRECTORY \"%s\")", target:name(), _get_relative_unix_path_to_cmake(target:targetdir(), outputdir))
cmakelists:print("set_target_properties(%s PROPERTIES ARCHIVE_OUTPUT_DIRECTORY \"%s\")", target:name(), _get_relative_unix_path_to_cmake(target:targetdir(), outputdir))
else
cmakelists:print("set_target_properties(%s PROPERTIES LIBRARY_OUTPUT_DIRECTORY \"%s\")", target:name(), _get_relative_unix_path_to_cmake(target:targetdir(), outputdir))
end
end
-- add target: headeronly
function _add_target_headeronly(cmakelists, target)
cmakelists:print("add_library(%s INTERFACE)", target:name())
end
-- add target dependencies
function _add_target_dependencies(cmakelists, target)
local deps = target:get("deps")
if deps then
cmakelists:printf("add_dependencies(%s", target:name())
for _, dep in ipairs(deps) do
cmakelists:write(" " .. dep)
end
cmakelists:print(")")
end
end
-- add target sources
function _add_target_sources(cmakelists, target, outputdir)
local has_cuda = false
cmakelists:print("target_sources(%s PRIVATE", target:name())
for _, sourcebatch in table.orderpairs(target:sourcebatches()) do
if _sourcebatch_is_built(sourcebatch) then
for _, sourcefile in ipairs(sourcebatch.sourcefiles) do
cmakelists:print(" " .. _get_relative_unix_path(sourcefile, outputdir))
end
end
if sourcebatch.sourcekind == "cu" then
has_cuda = true
end
end
for _, headerfile in ipairs(target:headerfiles()) do
cmakelists:print(" " .. _get_relative_unix_path(headerfile, outputdir))
end
cmakelists:print(")")
if has_cuda then
cmakelists:print("set_target_properties(%s PROPERTIES CUDA_SEPARABLE_COMPILATION ON)", target:name())
local devlink = target:policy("build.cuda.devlink") or target:values("cuda.build.devlink")
if devlink ~= nil then
cmakelists:print("set_target_properties(%s PROPERTIES CUDA_RESOLVE_DEVICE_SYMBOLS %s)", target:name(), devlink and "ON" or "OFF")
end
end
end
-- add target source groups
-- @see https://github.com/xmake-io/xmake/issues/1149
function _add_target_source_groups(cmakelists, target, outputdir)
local filegroups = target:get("filegroups")
for _, filegroup in ipairs(filegroups) do
local files = target:extraconf("filegroups", filegroup, "files") or "**"
local mode = target:extraconf("filegroups", filegroup, "mode")
local rootdir = target:extraconf("filegroups", filegroup, "rootdir")
assert(rootdir, "please set root directory, e.g. add_filegroups(%s, {rootdir = 'xxx'})", filegroup)
local sources = {}
local recurse_sources = {}
if path.is_absolute(rootdir) then
rootdir = _get_relative_unix_path(rootdir, outputdir)
else
rootdir = string.format("${CMAKE_CURRENT_SOURCE_DIR}/%s", _get_relative_unix_path(rootdir, outputdir))
end
for _, filepattern in ipairs(files) do
if filepattern:find("**", 1, true) then
filepattern = filepattern:gsub("%*%*", "*")
table.insert(recurse_sources, _get_relative_unix_path(path.join(rootdir, filepattern), outputdir))
else
table.insert(sources, _get_relative_unix_path(path.join(rootdir, filepattern), outputdir))
end
end
if #sources > 0 then
cmakelists:print("FILE(GLOB %s_GROUP_SOURCE_LIST %s)", target:name(), table.concat(sources, " "))
if mode and mode == "plain" then
cmakelists:print("source_group(%s FILES ${%s_GROUP_SOURCE_LIST})",
_get_relative_unix_path(filegroup, outputdir), target:name())
else
cmakelists:print("source_group(TREE %s PREFIX %s FILES ${%s_GROUP_SOURCE_LIST})",
rootdir, _get_relative_unix_path(filegroup, outputdir), target:name())
end
end
if #recurse_sources > 0 then
cmakelists:print("FILE(GLOB_RECURSE %s_GROUP_RECURSE_SOURCE_LIST %s)", target:name(), table.concat(recurse_sources, " "))
if mode and mode == "plain" then
cmakelists:print("source_group(%s FILES ${%s_GROUP_RECURSE_SOURCE_LIST})",
_get_relative_unix_path(filegroup, outputdir), target:name())
else
cmakelists:print("source_group(TREE %s PREFIX %s FILES ${%s_GROUP_RECURSE_SOURCE_LIST})",
rootdir, _get_relative_unix_path(filegroup, outputdir), target:name())
end
end
end
end
-- add target precompiled header
function _add_target_precompiled_header(cmakelists, target, outputdir)
local precompiled_header = target:get("pcheader") or target:get("pcxxheader")
if precompiled_header then
cmakelists:print("target_precompile_headers(%s PRIVATE", target:name())
cmakelists:print(" $<$<COMPILE_LANGUAGE:%s>:${CMAKE_CURRENT_SOURCE_DIR}/%s>",
target:get("pcxxheader") and "CXX" or "C",
_get_relative_unix_path(precompiled_header, outputdir))
cmakelists:print(")")
end
end
-- add target include directories
function _add_target_include_directories(cmakelists, target, outputdir)
local includedirs = _get_configs_from_target(target, "includedirs")
if #includedirs > 0 then
cmakelists:print("target_include_directories(%s PRIVATE", target:name())
for _, includedir in ipairs(includedirs) do
cmakelists:print(" " .. _get_relative_unix_path(includedir, outputdir))
end
cmakelists:print(")")
end
local includedirs_interface = target:get("includedirs", {interface = true})
if includedirs_interface then
cmakelists:print("target_include_directories(%s INTERFACE", target:name())
for _, headerdir in ipairs(includedirs_interface) do
cmakelists:print(" " .. _get_relative_unix_path(headerdir, outputdir))
end
cmakelists:print(")")
end
-- export config header directory (deprecated)
local configheader = target:configheader()
if configheader then
cmakelists:print("target_include_directories(%s PUBLIC %s)", target:name(), _get_relative_unix_path(path.directory(configheader), outputdir))
end
end
-- add target system include directories
-- we disable system/external includes first, because cmake doesn’t seem to be able to support msvc /external:I
-- https://github.com/xmake-io/xmake/issues/1050
function _add_target_sysinclude_directories(cmakelists, target, outputdir)
local includedirs = _get_configs_from_target(target, "sysincludedirs")
if #includedirs > 0 then
-- TODO should be `SYSTEM PRIVATE`
cmakelists:print("target_include_directories(%s PRIVATE", target:name())
for _, includedir in ipairs(includedirs) do
cmakelists:print(" " .. _get_relative_unix_path(includedir, outputdir))
end
cmakelists:print(")")
end
local includedirs_interface = target:get("sysincludedirs", {interface = true})
if includedirs_interface then
cmakelists:print("target_include_directories(%s INTERFACE", target:name())
for _, headerdir in ipairs(includedirs_interface) do
cmakelists:print(" " .. _get_relative_unix_path(headerdir, outputdir))
end
cmakelists:print(")")
end
end
-- add target framework directories
function _add_target_framework_directories(cmakelists, target, outputdir)
local frameworkdirs = _get_configs_from_target(target, "frameworkdirs")
if #frameworkdirs > 0 then
cmakelists:print("target_compile_options(%s PRIVATE", target:name())
for _, frameworkdir in ipairs(frameworkdirs) do
cmakelists:print(" $<$<COMPILE_LANGUAGE:C>:-F" .. _get_relative_unix_path(frameworkdir, outputdir) .. ">")
cmakelists:print(" $<$<COMPILE_LANGUAGE:CXX>:-F" .. _get_relative_unix_path(frameworkdir, outputdir) .. ">")
cmakelists:print(" $<$<COMPILE_LANGUAGE:OBJC>:-F" .. _get_relative_unix_path(frameworkdir, outputdir) .. ">")
cmakelists:print(" $<$<COMPILE_LANGUAGE:OBJCXX>:-F" .. _get_relative_unix_path(frameworkdir, outputdir) .. ">")
end
cmakelists:print(")")
local cmake_minver = _get_cmake_minver()
if cmake_minver:ge("3.13.0") then
cmakelists:print("target_link_options(%s PRIVATE", target:name())
else
cmakelists:print("target_link_libraries(%s PRIVATE", target:name())
end
for _, frameworkdir in ipairs(frameworkdirs) do
cmakelists:print(" -F" .. _get_relative_unix_path(frameworkdir, outputdir))
end
cmakelists:print(")")
end
local frameworkdirs_interface = target:get("frameworkdirs", {interface = true})
if frameworkdirs_interface then
cmakelists:print("target_compile_options(%s PRIVATE", target:name())
for _, frameworkdir in ipairs(frameworkdirs_interface) do
cmakelists:print(" $<$<COMPILE_LANGUAGE:C>:-F" .. _get_relative_unix_path(frameworkdir, outputdir) .. ">")
cmakelists:print(" $<$<COMPILE_LANGUAGE:CXX>:-F" .. _get_relative_unix_path(frameworkdir, outputdir) .. ">")
cmakelists:print(" $<$<COMPILE_LANGUAGE:OBJC>:-F" .. _get_relative_unix_path(frameworkdir, outputdir) .. ">")
cmakelists:print(" $<$<COMPILE_LANGUAGE:OBJCXX>:-F" .. _get_relative_unix_path(frameworkdir, outputdir) .. ">")
end
cmakelists:print(")")
end
end
-- add target compile definitions
function _add_target_compile_definitions(cmakelists, target)
local defines = _get_configs_from_target(target, "defines")
if #defines > 0 then
cmakelists:print("target_compile_definitions(%s PRIVATE", target:name())
for _, define in ipairs(defines) do
cmakelists:print(" " .. define)
end
cmakelists:print(")")
end
end
-- add target source files flags
function _add_target_sourcefiles_flags(cmakelists, target, sourcefile, name, outputdir)
local fileconfig = target:fileconfig(sourcefile)
if fileconfig then
local flags = _get_flags_from_fileconfig(fileconfig, outputdir, name)
if flags and #flags > 0 then
cmakelists:print("set_source_files_properties("
.. _get_relative_unix_path_to_cmake(sourcefile, outputdir)
.. " PROPERTIES COMPILE_OPTIONS")
local flagstrs = {}
for _, flag in ipairs(flags) do
if name == "cxxflags" then
table.insert(flagstrs, "$<$<COMPILE_LANGUAGE:CXX>:" .. flag .. ">")
elseif name == "cflags" then
table.insert(flagstrs, "$<$<COMPILE_LANGUAGE:C>:" .. flag .. ">")
elseif name == "cxflags" then
table.insert(flagstrs, "$<$<COMPILE_LANGUAGE:C>:" .. flag .. ">")
table.insert(flagstrs, "$<$<COMPILE_LANGUAGE:CXX>:" .. flag .. ">")
elseif name == "cuflags" then
table.insert(flagstrs, "$<$<COMPILE_LANGUAGE:CUDA>:" .. flag .. ">")
end
end
cmakelists:print(" \"%s\"", table.concat(flagstrs, ";"))
cmakelists:print(")")
end
end
end
-- add target compile options
function _add_target_compile_options(cmakelists, target, outputdir)
local cflags = _get_configs_from_target(target, "cflags")
local cxflags = _get_configs_from_target(target, "cxflags")
local cxxflags = _get_configs_from_target(target, "cxxflags")
local cuflags = _get_configs_from_target(target, "cuflags")
if #cflags > 0 or #cxflags > 0 or #cxxflags > 0 or #cuflags > 0 then
cmakelists:print("target_compile_options(%s PRIVATE", target:name())
for _, flag in ipairs(_translate_flags(cflags, outputdir)) do
flag = _escape_path_in_flag(target, flag)
cmakelists:print(" $<$<COMPILE_LANGUAGE:C>:" .. flag .. ">")
end
for _, flag in ipairs(_translate_flags(cxflags, outputdir)) do
flag = _escape_path_in_flag(target, flag)
cmakelists:print(" $<$<COMPILE_LANGUAGE:C>:" .. flag .. ">")
cmakelists:print(" $<$<COMPILE_LANGUAGE:CXX>:" .. flag .. ">")
end
for _, flag in ipairs(_translate_flags(cxxflags, outputdir)) do
flag = _escape_path_in_flag(target, flag)
cmakelists:print(" $<$<COMPILE_LANGUAGE:CXX>:" .. flag .. ">")
end
for _, flag in ipairs(_translate_flags(cuflags, outputdir)) do
flag = _escape_path_in_flag(target, flag)
cmakelists:print(" $<$<COMPILE_LANGUAGE:CUDA>:" .. flag .. ">")
end
cmakelists:print(")")
end
-- add cflags/cxxflags for the specific source files
for _, sourcebatch in table.orderpairs(target:sourcebatches()) do
if _sourcebatch_is_built(sourcebatch) then
for _, sourcefile in ipairs(sourcebatch.sourcefiles) do
_add_target_sourcefiles_flags(cmakelists, target, sourcefile, "cxxflags", outputdir)
_add_target_sourcefiles_flags(cmakelists, target, sourcefile, "cflags", outputdir)
_add_target_sourcefiles_flags(cmakelists, target, sourcefile, "cxflags", outputdir)
_add_target_sourcefiles_flags(cmakelists, target, sourcefile, "cuflags", outputdir)
end
end
end
end
-- add target warnings
function _add_target_warnings(cmakelists, target)
local flags_gcc =
{
none = "-w"
, less = "-Wall"
, more = "-Wall"
, all = "-Wall"
, allextra = "-Wall -Wextra"
, error = "-Werror"
}
local flags_msvc =
{
none = "-W0"
, less = "-W1"
, more = "-W3"
, all = "-W3" -- = "-Wall" will enable too more warnings
, allextra = "-W4"
, error = "-WX"
}
local warnings = target:get("warnings")
if warnings then
cmakelists:print("if(MSVC)")
for _, warn in ipairs(warnings) do
cmakelists:print(" target_compile_options(%s PRIVATE %s)", target:name(), flags_msvc[warn])
end
cmakelists:print("else()")
for _, warn in ipairs(warnings) do
cmakelists:print(" target_compile_options(%s PRIVATE %s)", target:name(), flags_gcc[warn])
end
cmakelists:print("endif()")
end
end
-- add target languages
function _add_target_languages(cmakelists, target)
local features =
{
c89 = "c_std_90"
, c99 = "c_std_99"
, c11 = "c_std_11"
, cxx98 = "cxx_std_98"
, cxx11 = "cxx_std_11"
, cxx14 = "cxx_std_14"
, cxx17 = "cxx_std_17"
, cxx20 = "cxx_std_20"
, cxx23 = "cxx_std_23"
}
local languages = target:get("languages")
if languages then
for _, lang in ipairs(languages) do
local has_ext = false
if lang:startswith("gnu") then
lang = lang:sub(4)
has_ext = true
end
local feature = features[lang] or (features[lang:replace("++", "xx")])
if feature then
cmakelists:print("set_target_properties(%s PROPERTIES CXX_EXTENSIONS %s)", target:name(), has_ext and "ON" or "OFF")
cmakelists:print("target_compile_features(%s PRIVATE %s)", target:name(), feature)
end
end
end
end
-- add target optimization
function _add_target_optimization(cmakelists, target)
local flags_gcc =
{
none = "-O0"
, fast = "-O1"
, faster = "-O2"
, fastest = "-O3"
, smallest = "-Os"
, aggressive = "-Ofast"
}
local flags_msvc =
{
none = "$<$<CONFIG:Debug>:-Od>"
, faster = "$<$<CONFIG:Release>:-O2>"
, fastest = "$<$<CONFIG:Release>:-Ox -fp:fast>"
, smallest = "$<$<CONFIG:Release>:-O1>"
, aggressive = "$<$<CONFIG:Release>:-Ox -fp:fast>"
}
local optimization = target:get("optimize")
if optimization then
cmakelists:print("if(MSVC)")
cmakelists:print(" target_compile_options(%s PRIVATE %s)", target:name(), flags_msvc[optimization])
cmakelists:print("else()")
cmakelists:print(" target_compile_options(%s PRIVATE %s)", target:name(), flags_gcc[optimization])
cmakelists:print("endif()")
end
end
-- add target symbols
function _add_target_symbols(cmakelists, target)
local symbols = target:get("symbols")
if symbols then
local flags_gcc = {}
local flags_msvc = {}
local levels = hashset.from(table.wrap(symbols))
if levels:has("debug") then
table.insert(flags_gcc, "-g")
if levels:has("edit") then
table.insert(flags_msvc, "-ZI")
elseif levels:has("embed") then
table.insert(flags_msvc, "-Z7")
else
table.insert(flags_msvc, "-Zi")
end
end
if levels:has("hidden") then
table.insert(flags_gcc, "-fvisibility=hidden")
end
cmakelists:print("if(MSVC)")
if #flags_msvc > 0 then
cmakelists:print(" target_compile_options(%s PRIVATE %s)", target:name(), table.concat(flags_msvc, " "))
end
cmakelists:print("else()")
if #flags_gcc > 0 then
cmakelists:print(" target_compile_options(%s PRIVATE %s)", target:name(), table.concat(flags_gcc, " "))
end
cmakelists:print("endif()")
end
end
-- add target vs runtime
--
-- https://github.com/xmake-io/xmake/issues/1661#issuecomment-927979489
-- https://cmake.org/cmake/help/latest/prop_tgt/MSVC_RUNTIME_LIBRARY.html
--
function _add_target_vs_runtime(cmakelists, target)
local cmake_minver = _get_cmake_minver()
if cmake_minver:ge("3.15.0") then
local vs_runtime = target:get("runtimes")
cmakelists:print("if(MSVC)")
if vs_runtime then
if vs_runtime == "MT" then
vs_runtime = "MultiThreaded"
elseif vs_runtime == "MTd" then
vs_runtime = "MultiThreadedDebug"
elseif vs_runtime == "MD" then
vs_runtime = "MultiThreadedDLL"
elseif vs_runtime == "MDd" then
vs_runtime = "MultiThreadedDebugDLL"
end
else
vs_runtime = "MultiThreaded$<$<CONFIG:Debug>:Debug>"
end
cmakelists:print(' set_property(TARGET %s PROPERTY', target:name())
cmakelists:print(' MSVC_RUNTIME_LIBRARY "%s")', vs_runtime)
cmakelists:print("endif()")
end
end
-- add target link libraries
function _add_target_link_libraries(cmakelists, target, outputdir)
-- add links
local links = _get_configs_from_target(target, "links")
local syslinks = _get_configs_from_target(target, "syslinks")
local frameworks = _get_configs_from_target(target, "frameworks")
if #frameworks > 0 then
for _, framework in ipairs(frameworks) do
table.insert(links, "\"-framework " .. framework .. "\"")
end
end
table.join2(links, syslinks)
if #links > 0 then
cmakelists:print("target_link_libraries(%s PRIVATE", target:name())
for _, link in ipairs(links) do
cmakelists:print(" " .. link)
end
cmakelists:print(")")
end
-- add other object files, maybe from custom rules
local objectfiles_set = hashset.new()
for _, sourcebatch in table.orderpairs(target:sourcebatches()) do
if _sourcebatch_is_built(sourcebatch) then
for _, objectfile in ipairs(sourcebatch.objectfiles) do
objectfiles_set:insert(objectfile)
end
end
end
if #target:objectfiles() > objectfiles_set:size() then
cmakelists:print("target_link_libraries(%s PRIVATE", target:name())
for _, objectfile in ipairs(target:objectfiles()) do
if not objectfiles_set:has(objectfile) then
cmakelists:print(" " .. _get_relative_unix_path_to_cmake(objectfile, outputdir))
end
end
cmakelists:print(")")
end
end
-- add target link directories
function _add_target_link_directories(cmakelists, target, outputdir)
local linkdirs = _get_configs_from_target(target, "linkdirs")
if #linkdirs > 0 then
local cmake_minver = _get_cmake_minver()
if cmake_minver:ge("3.13.0") then
cmakelists:print("target_link_directories(%s PRIVATE", target:name())
for _, linkdir in ipairs(linkdirs) do
cmakelists:print(" " .. _get_relative_unix_path(linkdir, outputdir))
end
cmakelists:print(")")
else
cmakelists:print("if(MSVC)")
cmakelists:print(" target_link_libraries(%s PRIVATE", target:name())
for _, linkdir in ipairs(linkdirs) do
cmakelists:print(" -libpath:" .. _get_relative_unix_path(linkdir, outputdir))
end
cmakelists:print(" )")
cmakelists:print("else()")
cmakelists:print(" target_link_libraries(%s PRIVATE", target:name())
for _, linkdir in ipairs(linkdirs) do
cmakelists:print(" -L" .. _get_relative_unix_path(linkdir, outputdir))
end
cmakelists:print(" )")
cmakelists:print("endif()")
end
end
end
-- add target link options
function _add_target_link_options(cmakelists, target)
local ldflags = _get_configs_from_target(target, "ldflags")
local shflags = _get_configs_from_target(target, "shflags")
if #ldflags > 0 or #shflags > 0 then
local flags = {}
for _, flag in ipairs(table.unique(table.join(ldflags, shflags))) do
table.insert(flags, flag)
end
if #flags > 0 then
local cmake_minver = _get_cmake_minver()
if cmake_minver:ge("3.13.0") then
cmakelists:print("target_link_options(%s PRIVATE", target:name())
else
cmakelists:print("target_link_libraries(%s PRIVATE", target:name())
end
for _, flag in ipairs(flags) do
flag = _escape_path_in_flag(target, flag)
cmakelists:print(" " .. flag)
end
cmakelists:print(")")
end
end
end
-- get command string
function _get_command_string(cmd, outputdir)
local kind = cmd.kind
local opt = cmd.opt
if cmd.program then
-- @see https://github.com/xmake-io/xmake/discussions/2156
local argv = {}
for _, v in ipairs(cmd.argv) do
table.insert(argv, _translate_flag(v, outputdir))
end
local command = _get_relative_unix_path_to_cmake(cmd.program) .. " " .. os.args(argv)
if opt and opt.curdir then
command = "${CMAKE_COMMAND} -E chdir " .. _get_relative_unix_path_to_cmake(opt.curdir, outputdir) .. " " .. command
end
return command
elseif kind == "cp" then
if os.isdir(cmd.srcpath) then
return string.format("${CMAKE_COMMAND} -E copy_directory %s %s",
_get_relative_unix_path_to_cmake(cmd.srcpath, outputdir), _get_relative_unix_path_to_cmake(cmd.dstpath, outputdir))
else
return string.format("${CMAKE_COMMAND} -E copy %s %s",
_get_relative_unix_path_to_cmake(cmd.srcpath, outputdir), _get_relative_unix_path_to_cmake(cmd.dstpath, outputdir))
end
elseif kind == "rm" then
return string.format("${CMAKE_COMMAND} -E rm -rf %s", _get_relative_unix_path_to_cmake(cmd.filepath, outputdir))
elseif kind == "mv" then
return string.format("${CMAKE_COMMAND} -E rename %s %s",
_get_relative_unix_path_to_cmake(cmd.srcpath, outputdir), _get_relative_unix_path_to_cmake(cmd.dstpath, outputdir))
elseif kind == "cd" then
return string.format("cd %s", _get_relative_unix_path_to_cmake(cmd.dir, outputdir))
elseif kind == "mkdir" then
return string.format("${CMAKE_COMMAND} -E make_directory %s", _get_relative_unix_path_to_cmake(cmd.dir, outputdir))
elseif kind == "show" then
return string.format("echo %s", colors.ignore(cmd.showtext))
end
end
-- add target custom commands for batchcmds
function _add_target_custom_commands_for_batchcmds(cmakelists, target, outputdir, suffix, batchcmds)
if suffix == "before" then
-- ADD_CUSTOM_COMMAND and PRE_BUILD did not work as I expected,
-- so we need use add_dependencies and fake target to support it.
--
-- @see https://gitlab.kitware.com/cmake/cmake/-/issues/17802
--
local key = target:name() .. "_" .. hash.uuid():split("-", {plain = true})[1]
cmakelists:print("add_custom_command(OUTPUT output_%s", key)
for _, cmd in ipairs(batchcmds:cmds()) do
local command = _get_command_string(cmd, outputdir)
if command then
cmakelists:print(" COMMAND %s", command)
end
end
cmakelists:print(" VERBATIM")
cmakelists:print(")")
cmakelists:print("add_custom_target(target_%s", key)
cmakelists:print(" DEPENDS output_%s", key)
cmakelists:print(")")
cmakelists:print("add_dependencies(%s target_%s)", target:name(), key)
else
cmakelists:print("add_custom_command(TARGET %s", target:name())
if suffix == "after" then
cmakelists:print(" POST_BUILD")
end
for _, cmd in ipairs(batchcmds:cmds()) do
local command = _get_command_string(cmd, outputdir)
if command then
cmakelists:print(" COMMAND %s", command)
end
end
cmakelists:print(" VERBATIM")
cmakelists:print(")")
end
end
-- add target custom commands for target
function _add_target_custom_commands_for_target(cmakelists, target, outputdir, suffix)
for _, ruleinst in ipairs(target:orderules()) do
local scriptname = "buildcmd" .. (suffix and ("_" .. suffix) or "")
local script = ruleinst:script(scriptname)
if script then
local batchcmds_ = batchcmds.new({target = target})
script(target, batchcmds_, {})
if not batchcmds_:empty() then
_add_target_custom_commands_for_batchcmds(cmakelists, target, outputdir, suffix, batchcmds_)
end
end
end
end
-- add target custom commands for object rules
function _add_target_custom_commands_for_objectrules(cmakelists, target, sourcebatch, outputdir, suffix)
-- get rule
local rulename = assert(sourcebatch.rulename, "unknown rule for sourcebatch!")
local ruleinst = assert(target:rule(rulename) or project.rule(rulename) or rule.rule(rulename), "unknown rule: %s", rulename)
-- generate commands for xx_buildcmd_files
local scriptname = "buildcmd_files" .. (suffix and ("_" .. suffix) or "")
local script = ruleinst:script(scriptname)
if script then
local batchcmds_ = batchcmds.new({target = target})
script(target, batchcmds_, sourcebatch, {})
if not batchcmds_:empty() then
_add_target_custom_commands_for_batchcmds(cmakelists, target, outputdir, suffix, batchcmds_)
end
end
-- generate commands for xx_buildcmd_file
if not script then
scriptname = "buildcmd_file" .. (suffix and ("_" .. suffix) or "")
script = ruleinst:script(scriptname)
if script then
local sourcekind = sourcebatch.sourcekind
for _, sourcefile in ipairs(sourcebatch.sourcefiles) do
local batchcmds_ = batchcmds.new({target = target})
script(target, batchcmds_, sourcefile, {})
if not batchcmds_:empty() then
_add_target_custom_commands_for_batchcmds(cmakelists, target, outputdir, suffix, batchcmds_)
end
end
end
end
end
-- add target custom commands
function _add_target_custom_commands(cmakelists, target, outputdir)
_add_target_custom_commands_for_target(cmakelists, target, outputdir, "before")
for _, sourcebatch in table.orderpairs(target:sourcebatches()) do
if not _sourcebatch_is_built(sourcebatch) then
_add_target_custom_commands_for_objectrules(cmakelists, target, sourcebatch, outputdir, "before")
_add_target_custom_commands_for_objectrules(cmakelists, target, sourcebatch, outputdir)
_add_target_custom_commands_for_objectrules(cmakelists, target, sourcebatch, outputdir, "after")
end
end
_add_target_custom_commands_for_target(cmakelists, target, outputdir, "after")
end
-- TODO export target headers (deprecated)
function _export_target_headers(target)
local srcheaders, dstheaders = target:headers()
if srcheaders and dstheaders then
local i = 1
for _, srcheader in ipairs(srcheaders) do
local dstheader = dstheaders[i]
if dstheader then
os.cp(srcheader, dstheader)
end
i = i + 1
end
end
end
-- add target
function _add_target(cmakelists, target, outputdir)
-- add comment
cmakelists:print("# target")
-- is phony target?
local targetkind = target:kind()
if target:is_phony() then
return _add_target_phony(cmakelists, target)
elseif targetkind == "binary" then
_add_target_binary(cmakelists, target, outputdir)
elseif targetkind == "static" then
_add_target_static(cmakelists, target, outputdir)
elseif targetkind == "shared" then
_add_target_shared(cmakelists, target, outputdir)
elseif targetkind == 'headeronly' then
_add_target_headeronly(cmakelists, target)
_add_target_include_directories(cmakelists, target, outputdir)
return
else
raise("unknown target kind %s", target:kind())
end
-- TODO export target headers (deprecated)
_export_target_headers(target)
-- add target dependencies
_add_target_dependencies(cmakelists, target)
-- add target custom commands
-- we need call it first for running all rules, these rules will change some flags, e.g. c++modules
_add_target_custom_commands(cmakelists, target, outputdir)
-- add target precompilied header
_add_target_precompiled_header(cmakelists, target, outputdir)
-- add target include directories
_add_target_include_directories(cmakelists, target, outputdir)
-- add target system include directories
_add_target_sysinclude_directories(cmakelists, target, outputdir)
-- add target framework directories
_add_target_framework_directories(cmakelists, target, outputdir)
-- add target compile definitions
_add_target_compile_definitions(cmakelists, target)
-- add target compile options
_add_target_compile_options(cmakelists, target, outputdir)
-- add target warnings
_add_target_warnings(cmakelists, target)
-- add target languages
_add_target_languages(cmakelists, target)
-- add target optimization
_add_target_optimization(cmakelists, target)
-- add target symbols
_add_target_symbols(cmakelists, target)
-- add vs runtime for msvc
_add_target_vs_runtime(cmakelists, target)
-- add target link libraries
_add_target_link_libraries(cmakelists, target, outputdir)
-- add target link directories
_add_target_link_directories(cmakelists, target, outputdir)
-- add target link options
_add_target_link_options(cmakelists, target)
-- add target sources
_add_target_sources(cmakelists, target, outputdir)
-- add target source groups
_add_target_source_groups(cmakelists, target, outputdir)
-- end
cmakelists:print("")
end
-- generate cmakelists
function _generate_cmakelists(cmakelists, outputdir)
-- add project info
_add_project(cmakelists, _get_project_languages(project.targets()), outputdir)
-- add targets
for _, target in table.orderpairs(project.targets()) do
_add_target(cmakelists, target, outputdir)
end
end
-- make
function make(outputdir)
-- enter project directory
local oldir = os.cd(os.projectdir())
-- open the cmakelists
local cmakelists = io.open(path.join(outputdir, "CMakeLists.txt"), "w")
-- generate cmakelists
_generate_cmakelists(cmakelists, outputdir)
-- close the cmakelists
cmakelists:close()
-- leave project directory
os.cd(oldir)
end
|