Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion App/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# ***** END LICENSE BLOCK *****

set(Natron_SOURCES NatronApp_main.cpp)
if(WINDOWS)
if(WIN32)
list(APPEND Natron_SOURCES ../Natron.rc)
endif()
add_executable(Natron ${Natron_SOURCES})
Expand Down
2 changes: 1 addition & 1 deletion Renderer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# ***** END LICENSE BLOCK *****

set(NatronRenderer_SOURCES NatronRenderer_main.cpp)
if(WINDOWS)
if(WIN32)
list(APPEND NatronRenderer_SOURCES ../Natron.rc)
endif()
add_executable(NatronRenderer ${NatronRenderer_SOURCES})
Expand Down
2 changes: 1 addition & 1 deletion libs/gflags/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ set(gflags_SOURCES
src/gflags_completions.cc
src/gflags_reporting.cc
)
if(WINDOWS)
if(WIN32)
set(gflags_HEADERS ${gflags_HEADERS} src/windows_port.h)
set(gflags_SOURCES ${gflags_SOURCES} src/windows_port.cc)
endif()
Expand Down