Fixed compiling on linux

This commit is contained in:
2022-02-14 11:10:17 -08:00
parent af2f9bd2a4
commit 0fd3bf459c
2 changed files with 8 additions and 3 deletions

View File

@ -25,8 +25,13 @@ else()
message(FATAL_ERROR "Missing or invalid definition of TARGET_TYPE") message(FATAL_ERROR "Missing or invalid definition of TARGET_TYPE")
endif() endif()
# Check game has been defined
if(NOT DEFINED TARGET_GAME)
message(FATAL_ERROR "Missing or invalid definition of TARGET_GAME")
endif()
# Set up the project # Set up the project
project(${TARGET_NAME} VERSION 1.0) project(${TARGET_NAME} C)
add_executable(${PROJECT_NAME}) add_executable(${PROJECT_NAME})
# Variables # Variables