File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,11 @@ libopenage: $(BUILDDIR)
45
45
46
46
.PHONY : codegen
47
47
codegen : $(BUILDDIR )
48
- $(MAKE ) $(MAKEARGS ) -C $(BUILDDIR ) codegen
48
+ $(MAKE ) $(MAKEARGS ) -C $(BUILDDIR ) cppgen
49
+
50
+ .PHONY : cppgen
51
+ cppgen : $(BUILDDIR )
52
+ $(MAKE ) $(MAKEARGS ) -C $(BUILDDIR ) cppgen
49
53
50
54
.PHONY : pxdgen
51
55
pxdgen : $(BUILDDIR )
Original file line number Diff line number Diff line change 1
- # Copyright 2014-2019 the openage authors. See copying.md for legal info.
1
+ # Copyright 2014-2025 the openage authors. See copying.md for legal info.
2
2
3
3
# set CODEGEN_SCU_FILE to the absolute path to SCU file
4
4
macro (get_codegen_scu_file)
@@ -52,7 +52,7 @@ function(codegen_run)
52
52
COMMENT "openage.codegen: generating c++ code"
53
53
)
54
54
55
- add_custom_target (codegen
55
+ add_custom_target (cppgen
56
56
DEPENDS "${CODEGEN_TIMEFILE} "
57
57
)
58
58
Original file line number Diff line number Diff line change 1
- # Copyright 2014-2019 the openage authors. See copying.md for legal info.
1
+ # Copyright 2014-2025 the openage authors. See copying.md for legal info.
2
2
3
3
# main C++ library definitions.
4
4
# dependency and source file setup for the resulting library.
@@ -13,7 +13,7 @@ declare_binary(libopenage openage library allow_no_undefined)
13
13
set_target_properties (libopenage PROPERTIES
14
14
VERSION 0
15
15
AUTOMOC ON
16
- AUTOGEN_TARGET_DEPENDS "codegen "
16
+ AUTOGEN_TARGET_DEPENDS "cppgen "
17
17
)
18
18
19
19
##################################################
You can’t perform that action at this time.
0 commit comments