2022-10-23 23:46:12 -04:00
cmake_minimum_required ( VERSION 3.22 )
2022-10-20 18:02:48 -04:00
project ( Step_3 )
2022-10-20 11:30:15 -04:00
set ( CMAKE_CXX_STANDARD 20 )
2022-10-23 23:46:12 -04:00
option ( EnableDebugMenu "Enable the debug utils" OFF )
2022-10-31 00:51:51 -04:00
option ( COMPILE_GUI "Enable compilation of the GUI + utils" OFF )
option ( USE_GLFW "Will try to use GLFW instead of X11. If libglfw3 and libglfw3-dev are not installed it will default to X11" ON )
2022-10-23 23:46:12 -04:00
option ( COMPILE_OPENCL "Enable compilation of the OpenCL GPU Compute." OFF )
2022-10-20 11:30:15 -04:00
# used to debug memory related issues
2022-10-20 18:02:48 -04:00
if ( ( CMAKE_BUILD_TYPE MATCHES Debug ) )
if ( UNIX )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address -g" )
add_compile_options ( -fsanitize=address )
add_link_options ( -fsanitize=address )
2022-10-31 00:51:51 -04:00
endif ( )
2022-10-20 18:02:48 -04:00
set ( COMPILER_DEBUG_ENABLED true )
2022-10-31 00:51:51 -04:00
else ( )
2022-10-20 18:02:48 -04:00
set ( COMPILER_DEBUG_ENABLED false )
2022-10-31 00:51:51 -04:00
endif ( )
2022-10-20 18:02:48 -04:00
set ( COMPILER_DEBUG_ENABLED_BOOL true )
2022-10-31 00:51:51 -04:00
if ( EnableDebugMenu MATCHES ON )
2022-10-20 18:02:48 -04:00
message ( "debug mode" )
set ( DEBUG_ENABLED true )
2022-10-31 00:51:51 -04:00
else ( )
2022-10-20 18:02:48 -04:00
message ( "release mode" )
set ( DEBUG_ENABLED false )
2022-10-31 00:51:51 -04:00
endif ( EnableDebugMenu MATCHES ON )
2022-10-20 18:02:48 -04:00
set ( DEBUG_ENABLED_BOOL true )
#config stuff
2022-10-23 23:46:12 -04:00
configure_file ( include/engine/config.h.in config.h @ONLY )
2022-10-20 18:02:48 -04:00
# include the config file
include_directories ( ${ CMAKE_CURRENT_BINARY_DIR } )
2022-10-20 11:30:15 -04:00
# enables AVX instructions. if you have issues, try disabling this.
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native" )
#Setup project source compilation
2022-10-23 23:46:12 -04:00
set ( engine_source_dir "${PROJECT_SOURCE_DIR}/src/engine" )
file ( GLOB_RECURSE engine_source_files "${engine_source_dir}/*.cpp" "${engine_source_dir}/*.c" )
# only want to attempt to compile graphics if user requests it
# plus we can only compile on X11 supported systems, so basically unix
if ( COMPILE_GUI MATCHES ON AND UNIX )
message ( "Compiling with GUI." )
find_package ( OpenGL REQUIRED )
2022-10-31 00:51:51 -04:00
set ( SHOULD_FIND_X ON )
if ( USE_GLFW )
find_package ( glfw3 3.3 )
if ( glfw3_FOUND )
message ( "Found GLFW3!" )
set ( SHOULD_FIND_X OFF )
else ( )
message ( "Unable to find GLFW3. Please install with sudo apt install libglfw3 libglfw3-dev" )
endif ( )
endif ( )
if ( SHOULD_FIND_X MATCHES ON )
message ( "Defaulting to X11. Please consider using GLFW as it is consider to be more stable and is what is actively developed. Bugs are to be expected using X11." )
find_package ( X11 )
if ( NOT X11_FOUND )
message ( "X11 wasn't found on your system. Do you have the development libs? sudo apt install libx11-dev" )
endif ( )
include_directories ( ${ X11_INCLUDE_DIR } )
endif ( )
2022-10-23 23:46:12 -04:00
set ( graphics_source_dir "${PROJECT_SOURCE_DIR}/src/graphics" )
file ( GLOB_RECURSE graphics_source_files "${graphics_source_dir}/*.cpp" "${graphics_source_dir}/*.c" )
2022-10-31 00:51:51 -04:00
endif ( )
2022-10-23 23:46:12 -04:00
# Windows should be able to handle opencl no problem.
# i decided that i wanted to use opencl due to it having a much nicer c99 language.
if ( COMPILE_OPENCL MATCHES ON )
find_package ( OpenCL )
2022-10-31 00:51:51 -04:00
if ( NOT OpenCL_FOUND )
2022-10-23 23:46:12 -04:00
message ( "Unable to find OpenCL on your system. Do you have the required libs?" )
2022-10-31 00:51:51 -04:00
endif ( )
2022-10-23 23:46:12 -04:00
include_directories ( ${ OpenCL_INCLUDE_DIRS } )
set ( opencl_source_dir "${PROJECT_SOURCE_DIR}/src/opencl" )
file ( GLOB_RECURSE opencl_source_files "${opencl_source_dir}/*.cpp" "${opencl_source_dir}/*.c" )
2022-10-31 00:51:51 -04:00
endif ( )
2022-10-20 11:30:15 -04:00
#Setup project header files
include_directories ( ${ PROJECT_SOURCE_DIR } /include )
2022-10-23 23:46:12 -04:00
add_executable ( ${ PROJECT_NAME } ${ engine_source_files } ${ graphics_source_files } ${ opencl_source_files } )
target_link_libraries ( ${ PROJECT_NAME } pthread )
if ( COMPILE_GUI MATCHES ON AND UNIX )
target_link_libraries ( ${ PROJECT_NAME } OpenGL::GL OpenGL::GLU OpenGL::GLX )
target_link_libraries ( ${ PROJECT_NAME } ${ X11_LIBRARIES } )
2022-10-31 00:51:51 -04:00
endif ( )
if ( USE_GLFW MATCHES ON AND glfw3_FOUND )
target_link_libraries ( ${ PROJECT_NAME } glfw )
endif ( )
2022-10-23 23:46:12 -04:00
if ( COMPILE_OPENCL MATCHES ON )
target_link_libraries ( ${ PROJECT_NAME } ${ OpenCL_LIBRARIES } )
2022-10-31 00:51:51 -04:00
endif ( )