-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean up CMake. #498
Clean up CMake. #498
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you plan to Merge with Rebase, please append (#498)
to the commit titles.
beb4062
to
42515d3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks ok to me when the remaining linker error(s) are fixed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I ran the default win32 and debug mode, all work properly including install.
There is a problem with vc6 in default mode with FetchContent
, in debug mode it works fine.
VC6 also work fine.
I did not test int and prof
b3706fc
to
06fe5e7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good.
Minor: I would have put some space after tag in commits:
[CMake]Move compiler configuration to its own cmake file.
^ space
So it does not look as cramped.
CMakeLists.txt
Outdated
# Because we set CMAKE_CXX_STANDARD_REQUIRED and CMAKE_CXX_EXTENSIONS in the compilers.cmake this should be enforced. | ||
target_compile_features(gz_config INTERFACE cxx_std_20) | ||
endif() | ||
|
||
target_compile_options(gz_config INTERFACE ${GENZH_FLAGS}) | ||
|
||
target_compile_definitions(gz_config INTERFACE $<IF:$<CONFIG:Debug>,_DEBUG WWDEBUG DEBUG,_RELEASE>) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps gz_config can also be moved into a config.cmake in a future change.
Cleans up sub library naming as libraries are now named based on target name and don't vary based on build options.
06fe5e7
to
693a006
Compare
09770a8
to
29eb00e
Compare
Files cause issues on 64bit and aren't required.
GENZH_BUILD_%GAME%_TOOLS now defaults to ON and builds only tools a developer would use/need. GENZH_BUILD_%GAME%_EXTRAS has been added and defaults to OFF. It controls building everything else. All useful tools are now added to the install target.
29eb00e
to
8ca02a0
Compare
Cleans up sub library naming as libraries are now named based on target name and don't vary based on build options.
Files cause issues on 64bit and aren't required.
…perHackers#498) Cleans up sub library naming as libraries are now named based on target name and don't vary based on build options.
GENZH_BUILD_%GAME%_TOOLS now defaults to ON and builds only tools a developer would use/need. GENZH_BUILD_%GAME%_EXTRAS has been added and defaults to OFF. It controls building everything else. All useful tools are now added to the install target.
Removed the
#pragma comment
linker instructions embedded in the code.Removes the various alternate names for different libraries.
Refactors build types to all be options.
Cleans up presets so win32 can also be used as an msvc preset.
Moves compiler specific configuration to its own compilers.cmake file as much as possible.