mirror of
https://github.com/GOSTSec/ccminer
synced 2025-01-27 23:14:27 +00:00
neoscrypt: put all files in same vs filter
This commit is contained in:
parent
73af5c583c
commit
75313cbf1c
@ -265,8 +265,11 @@
|
|||||||
<ClCompile Include="myriadgroestl.cpp" />
|
<ClCompile Include="myriadgroestl.cpp" />
|
||||||
<ClCompile Include="lyra2\Lyra2.c" />
|
<ClCompile Include="lyra2\Lyra2.c" />
|
||||||
<ClCompile Include="lyra2\Sponge.c" />
|
<ClCompile Include="lyra2\Sponge.c" />
|
||||||
<ClCompile Include="neoscrypt\neoscrypt-cpu.c" />
|
<ClInclude Include="neoscrypt\neoscrypt.h" />
|
||||||
<ClCompile Include="neoscrypt\neoscrypt.cpp" />
|
<ClCompile Include="neoscrypt\neoscrypt.cpp" />
|
||||||
|
<ClCompile Include="neoscrypt\neoscrypt-cpu.c" />
|
||||||
|
<ClInclude Include="neoscrypt\cuda_vectors.h" />
|
||||||
|
<CudaCompile Include="neoscrypt\cuda_neoscrypt.cu" />
|
||||||
<ClCompile Include="sph\aes_helper.c" />
|
<ClCompile Include="sph\aes_helper.c" />
|
||||||
<ClCompile Include="sph\blake.c" />
|
<ClCompile Include="sph\blake.c" />
|
||||||
<ClCompile Include="sph\bmw.c" />
|
<ClCompile Include="sph\bmw.c" />
|
||||||
@ -437,7 +440,6 @@
|
|||||||
<AdditionalOptions Condition="'$(Configuration)'=='Release'">-Xptxas "-abi=yes" %(AdditionalOptions)</AdditionalOptions>
|
<AdditionalOptions Condition="'$(Configuration)'=='Release'">-Xptxas "-abi=yes" %(AdditionalOptions)</AdditionalOptions>
|
||||||
<AdditionalOptions Condition="'$(Configuration)'=='Debug'">-Xptxas "-abi=yes" %(AdditionalOptions)</AdditionalOptions>
|
<AdditionalOptions Condition="'$(Configuration)'=='Debug'">-Xptxas "-abi=yes" %(AdditionalOptions)</AdditionalOptions>
|
||||||
</CudaCompile>
|
</CudaCompile>
|
||||||
<CudaCompile Include="neoscrypt\cuda_neoscrypt.cu" />
|
|
||||||
<CudaCompile Include="pluck\pluck.cu" />
|
<CudaCompile Include="pluck\pluck.cu" />
|
||||||
<CudaCompile Include="pluck\cuda_pluck.cu" />
|
<CudaCompile Include="pluck\cuda_pluck.cu" />
|
||||||
<CudaCompile Include="quark\cuda_quark_groestl512.cu">
|
<CudaCompile Include="quark\cuda_quark_groestl512.cu">
|
||||||
@ -536,4 +538,4 @@
|
|||||||
<Target Name="AfterClean">
|
<Target Name="AfterClean">
|
||||||
<Delete Files="@(FilesToCopy->'$(OutDir)%(Filename)%(Extension)')" TreatErrorsAsWarnings="true" />
|
<Delete Files="@(FilesToCopy->'$(OutDir)%(Filename)%(Extension)')" TreatErrorsAsWarnings="true" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
@ -76,6 +76,9 @@
|
|||||||
<Filter Include="Source Files\CUDA\scrypt">
|
<Filter Include="Source Files\CUDA\scrypt">
|
||||||
<UniqueIdentifier>{c26f5b02-37b5-4420-a4e8-ee1ad517dc95}</UniqueIdentifier>
|
<UniqueIdentifier>{c26f5b02-37b5-4420-a4e8-ee1ad517dc95}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="Source Files\neoscrypt">
|
||||||
|
<UniqueIdentifier>{2037fd0d-e7a2-4da8-956c-150aec726a99}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="compat\jansson\dump.c">
|
<ClCompile Include="compat\jansson\dump.c">
|
||||||
@ -120,9 +123,6 @@
|
|||||||
<ClCompile Include="groestlcoin.cpp">
|
<ClCompile Include="groestlcoin.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="neoscrypt\neoscrypt.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="sph\aes_helper.c">
|
<ClCompile Include="sph\aes_helper.c">
|
||||||
<Filter>Source Files\sph</Filter>
|
<Filter>Source Files\sph</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -234,8 +234,11 @@
|
|||||||
<ClCompile Include="scrypt-jane.cpp">
|
<ClCompile Include="scrypt-jane.cpp">
|
||||||
<Filter>Source Files\CUDA\scrypt</Filter>
|
<Filter>Source Files\CUDA\scrypt</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="neoscrypt\neoscrypt.cpp">
|
||||||
|
<Filter>Source Files\neoscrypt</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="neoscrypt\neoscrypt-cpu.c">
|
<ClCompile Include="neoscrypt\neoscrypt-cpu.c">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files\neoscrypt</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@ -392,6 +395,12 @@
|
|||||||
<ClInclude Include="scrypt\salsa_kernel.h">
|
<ClInclude Include="scrypt\salsa_kernel.h">
|
||||||
<Filter>Source Files\CUDA\scrypt</Filter>
|
<Filter>Source Files\CUDA\scrypt</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="neoscrypt\neoscrypt.h">
|
||||||
|
<Filter>Source Files\neoscrypt</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="neoscrypt\cuda_vectors.h">
|
||||||
|
<Filter>Source Files\neoscrypt</Filter>
|
||||||
|
</ClInclude>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<CudaCompile Include="cuda.cpp">
|
<CudaCompile Include="cuda.cpp">
|
||||||
@ -626,7 +635,7 @@
|
|||||||
<Filter>Source Files\CUDA\scrypt</Filter>
|
<Filter>Source Files\CUDA\scrypt</Filter>
|
||||||
</CudaCompile>
|
</CudaCompile>
|
||||||
<CudaCompile Include="neoscrypt\cuda_neoscrypt.cu">
|
<CudaCompile Include="neoscrypt\cuda_neoscrypt.cu">
|
||||||
<Filter>Source Files\CUDA</Filter>
|
<Filter>Source Files\neoscrypt</Filter>
|
||||||
</CudaCompile>
|
</CudaCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@ -644,4 +653,4 @@
|
|||||||
<Filter>Ressources</Filter>
|
<Filter>Ressources</Filter>
|
||||||
</Text>
|
</Text>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
Loading…
x
Reference in New Issue
Block a user