Archive 17/01/2023.

How do you include source in subdirectories?

practicing01

So far I’ve been putting all my code in the same directory as Urho3DPlayer.cpp and running cmake_x.sh will add them to the makefile. How can I make cmake find code within subfolders?

TikariSakari

This is probably less ideal thing, but what I used is to create project with samples. Then copying one sample I want to modify, and then changing the Sample-folders CMakeList.txt by adding a new subdirectory to the new project I am using. After thinking this a bit, I guess it would make more sense to actually modify the cmakelist.txt that is inside source-folder and add subdirectory in there.

jmiller

You can set SOURCE_FILES in your CMakeLists.txt:

file (GLOB CPP_FILES src/*.cpp src/*.cc) file (GLOB H_FILES src/*.h) set (SOURCE_FILES ${CPP_FILES} ${H_FILES})

weitjong

You can pass the glob patterns directly to the define_source_files() macro too. Using carnalis’s example, you can write:

TikariSakari

[quote=“weitjong”]You can pass the glob patterns directly to the define_source_files() macro too. Using carnalis’s example, you can write:

Seems that this works, but If I use this, is there a way to define the different folders into a filter for visual studio? Now when/if I have to change the cmakefile, like add more to the structure, then when the visual studio updates the project, it completely wipes the filter structure that I have set up. So every file is just either in source or header-filter. Like lets say I have

States/GameStateManager.cpp & h
States/BaseState.cpp & h
TheGame.cpp & h

After it reloads the cmakelists.txt in visual studio it looks as:

Header Files:
  GameStateManager.cpp
  BaseState.cpp
  TheGame.cpp

Source Files:
  GameStateManager.h
  BaseState.h
  TheGame.h

So the structure is completely gone that I set up as in the files. Is there some “easy” way to define it, so that for example files in States-folder are inside filter called states in visual studio automatically after the cmakelists.txt has been reloaded by visual studio?

weitjong

If I understand you correctly then you want the “grouping”. The answer is yes and no. If you have physically structured your source files into sub-dirs then yes, you can pass the ‘GROUP’ option to the macro to tell it to group the source files based on the sub-dirs relative path to the parent directory. If, however, your source files are just located in a single directory, say src/, then you will have to create the group manually by calling CMake’s source_group() command. HTH.

TikariSakari

Thanks, yup i have folder structure on my project. Using the sample.h kind of explodes to show whole folder structure from f:/… instead of …/sample.h, but that is fine, since I should anyways at some point make my own base application file anyways.

This really helps me, and hopefully other as clueless people as me. The make files are just, well something I hope I do not have a lot to deal with in the future.

# Define source files
define_source_files (EXTRA_H_FILES ${COMMON_SAMPLE_H_FILES} 
	GLOB_CPP_PATTERNS *.cpp src/*.cpp ui/*.cpp states/*.cpp src/*.cpp 
	GLOB_H_PATTERNS *.h src/*.h ui/*.h states/*.h GROUP )

Browsing the makefiles from urho3d-folder for how to use the GROUP option, I found even better one for me:

# Define source files
define_source_files (EXTRA_H_FILES ${COMMON_SAMPLE_H_FILES} 
	GLOB_CPP_PATTERNS *.c* 
	GLOB_H_PATTERNS *.h* RECURSE GROUP )

As long as I keep just source codes under the main folder, this will recursively add all c-type files and h-type files in their respective folders inside visual studio.

weitjong

The RECURSE option is relatively new. Glad you find it useful. You may also want to know that the recurse option works on the list of glob patterns you provide, so it does not limit your project to have all the source files in just one main folder.