jak-project/goalc/CMakeLists.txt

17 lines
346 B
CMake
Raw Normal View History

2020-08-22 22:30:12 -04:00
add_subdirectory(util)
add_subdirectory(goos)
2020-08-26 22:23:16 -04:00
IF (WIN32)
# TODO - implement windows listener
message("Windows Listener Not Implemented!")
ELSE()
add_subdirectory(listener)
ENDIF()
2020-08-22 22:30:12 -04:00
add_subdirectory(emitter)
add_executable(goalc main.cpp)
2020-08-26 22:23:16 -04:00
IF (WIN32)
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
ENDIF()
2020-08-22 22:30:12 -04:00
target_link_libraries(goalc util goos)