Skip to content

Commit 30ff90b

Browse files
committed
Reference gds.cpp in src/yvalve.
1 parent 28058cf commit 30ff90b

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

builds/posix/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ $(ENGINE_SONAME): $(Engine_Objects) $(SVC_Objects) $(COMMON_LIB)
407407
$(LINK_ENGINE) -o $@ $^ $(LINK_ENGINE_LIBS) $(call LIB_LINK_DARWIN_INSTALL_NAME,plugins/$(EngineSoName))
408408

409409
$(ENGINE_TEST): $(Engine_Objects) $(Engine_Test_Objects) $(SVC_Objects) $(COMMON_LIB)
410-
$(EXE_LINK) $(EXE_LINK_OPTIONS) $^ -o $@ $(LINK_ENGINE_LIBS)
410+
$(EXE_LINK) -o $@ $^ $(EXE_LINK_OPTIONS) $(LINK_ENGINE_LIBS)
411411

412412

413413
#___________________________________________________________________________

builds/posix/make.shared.variables

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ AllObjects += $(Common_Objects)
3939
# Common test files
4040
COT1:= $(call dirObjects,common/tests)
4141
COT2:= $(call dirObjects,common/classes/tests)
42-
Common_Test_Objects:= $(COT1) $(COT2)
42+
Common_Test_Objects:= $(COT1) $(COT2) $(call makeObjects,yvalve,gds.cpp)
4343

4444
AllObjects += $(Common_Test_Objects)
4545

@@ -48,7 +48,7 @@ AllObjects += $(Common_Test_Objects)
4848
GPRE_Common_Objects:= $(call dirObjects,gpre) $(call makeObjects,gpre/languages,@GPRE_LANGUAGE_MODULES@)
4949
GPRE_std:= $(call dirObjects,gpre/std)
5050
GPRE_Objects:= $(GPRE_Common_Objects) $(GPRE_std)
51-
GPRE_boot:= $(call dirObjects,gpre/boot)
51+
GPRE_boot:= $(call dirObjects,gpre/boot) $(call makeObjects,yvalve,gds.cpp)
5252
GPRE_Boot_Objects:= $(GPRE_Common_Objects) $(GPRE_boot)
5353

5454
AllObjects += $(GPRE_Common_Objects) $(GPRE_std) $(GPRE_boot)

builds/win32/msvc15/common_test.vcxproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@
191191
<ClCompile Include="..\..\..\src\common\classes\tests\AlignerTest.cpp" />
192192
<ClCompile Include="..\..\..\src\common\classes\tests\ArrayTest.cpp" />
193193
<ClCompile Include="..\..\..\src\common\classes\tests\DoublyLinkedListTest.cpp" />
194+
<ClCompile Include="..\..\..\src\yvalve\gds.cpp" />
194195
</ItemGroup>
195196
<ItemGroup>
196197
<ProjectReference Include="common.vcxproj">
@@ -205,4 +206,4 @@
205206
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
206207
<ImportGroup Label="ExtensionTargets">
207208
</ImportGroup>
208-
</Project>
209+
</Project>

builds/win32/msvc15/common_test.vcxproj.filters

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,8 @@
2727
<ClCompile Include="..\..\..\src\common\classes\tests\DoublyLinkedListTest.cpp">
2828
<Filter>source</Filter>
2929
</ClCompile>
30+
<ClCompile Include="..\..\..\src\yvalve\gds.cpp">
31+
<Filter>source</Filter>
32+
</ClCompile>
3033
</ItemGroup>
31-
</Project>
34+
</Project>

0 commit comments

Comments
 (0)