Original Post
Hi,
I am using MS visual studio 2008 and I created a solution with 2 projects
like:
Tackling(2 Projects)
|--> Game
|--> Engine
Game project has the void Main() as the entry point to the project and Engine project contain all the library files.
When i try to compile the project it gives link error like:
fatal error LNK1561: entry point must be defined
for the Engine files. The Game files compiles successfully.
I know that entry point is stating that it should have main() but Engine project does not need to have a main() as the Game already has it.
Let me know how to make the proper settings so that Engine files are properly linked.
All suggestions are welcome...
I am using MS visual studio 2008 and I created a solution with 2 projects
like:
Tackling(2 Projects)
|--> Game
|--> Engine
Game project has the void Main() as the entry point to the project and Engine project contain all the library files.
When i try to compile the project it gives link error like:
fatal error LNK1561: entry point must be defined
for the Engine files. The Game files compiles successfully.
I know that entry point is stating that it should have main() but Engine project does not need to have a main() as the Game already has it.
Let me know how to make the proper settings so that Engine files are properly linked.
All suggestions are welcome...